Module: wine Branch: master Commit: 39a9604e25dadff87d3e1df1d7581e1028aea13d URL: http://source.winehq.org/git/wine.git/?a=commit;h=39a9604e25dadff87d3e1df1d7...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Tue Oct 1 23:33:54 2013 +0200
taskkill: Use BOOL type where appropriate.
---
programs/taskkill/taskkill.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/programs/taskkill/taskkill.c b/programs/taskkill/taskkill.c index 53b56ff..18edec3 100644 --- a/programs/taskkill/taskkill.c +++ b/programs/taskkill/taskkill.c @@ -29,7 +29,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(taskkill);
-static int force_termination; +static BOOL force_termination = FALSE;
static WCHAR **task_list; static unsigned int task_count; @@ -456,7 +456,7 @@ static BOOL process_arguments(int argc, WCHAR *argv[]) if (argc > 1) { int i; - BOOL has_im = 0, has_pid = 0; + BOOL has_im = FALSE, has_pid = FALSE;
/* Only the lone help option is recognized. */ if (argc == 2 && !strcmpW(slashHelp, argv[1])) @@ -472,7 +472,7 @@ static BOOL process_arguments(int argc, WCHAR *argv[]) if (!strcmpiW(slashTerminateChildren, argv[i])) WINE_FIXME("/T not supported\n"); if (!strcmpiW(slashForceTerminate, argv[i])) - force_termination = 1; + force_termination = TRUE; /* Options /IM and /PID appear to behave identically, except for * the fact that they cannot be specified at the same time. */ else if ((got_im = !strcmpiW(slashImage, argv[i])) || @@ -485,8 +485,8 @@ static BOOL process_arguments(int argc, WCHAR *argv[]) return FALSE; }
- if (got_im) has_im = 1; - if (got_pid) has_pid = 1; + if (got_im) has_im = TRUE; + if (got_pid) has_pid = TRUE;
if (has_im && has_pid) {