taskkill: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Sat Feb 22 05:22:34 CST 2014


---
 programs/taskkill/taskkill.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programs/taskkill/taskkill.c b/programs/taskkill/taskkill.c
index 7f0e7ad..b9dd1a5 100644
--- a/programs/taskkill/taskkill.c
+++ b/programs/taskkill/taskkill.c
@@ -472,7 +472,7 @@ static BOOL process_arguments(int argc, WCHAR *argv[])
 
         for (i = 1; i < argc; i++)
         {
-            int got_im = 0, got_pid = 0;
+            BOOL got_im = FALSE, got_pid = FALSE;
 
             argdata = argv[i];
             if (*argdata != '/' && *argdata != '-')
-- 
1.9.0




More information about the wine-patches mailing list