Commit 17fecb55 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

taskkill: Use BOOL type where appropriate.

parent aa2f454f
...@@ -472,7 +472,7 @@ static BOOL process_arguments(int argc, WCHAR *argv[]) ...@@ -472,7 +472,7 @@ static BOOL process_arguments(int argc, WCHAR *argv[])
for (i = 1; i < argc; i++) for (i = 1; i < argc; i++)
{ {
int got_im = 0, got_pid = 0; BOOL got_im = FALSE, got_pid = FALSE;
argdata = argv[i]; argdata = argv[i];
if (*argdata != '/' && *argdata != '-') if (*argdata != '/' && *argdata != '-')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment