=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: taskkill: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Sat Feb 22 09:50:04 CST 2014


Module: wine
Branch: master
Commit: 17fecb55a1955f44e0ae5f4a811a8cbf5efd0101
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=17fecb55a1955f44e0ae5f4a811a8cbf5efd0101

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Sat Feb 22 12:22:34 2014 +0100

taskkill: Use BOOL type where appropriate.

---

 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 != '-')




More information about the wine-cvs mailing list