From 101e7d3ee69aa9abf1f826424d14104e10781bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Fri, 11 Oct 2013 22:43:03 +0200 Subject: [PATCH] winepath: Use BOOL type where appropriate. --- programs/winepath/winepath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/winepath/winepath.c b/programs/winepath/winepath.c index 6e5f58dd5b7..ef11a5a1f89 100644 --- a/programs/winepath/winepath.c +++ b/programs/winepath/winepath.c @@ -105,7 +105,7 @@ static int parse_options(WCHAR *argv[]) static const WCHAR nullW[] = { 0 }; static const WCHAR *longopts[] = { longW, shortW, unixW, windowsW, helpW, versionW, nullW }; int outputformats = 0; - int done = 0; + BOOL done = FALSE; int i, j; for (i = 1; argv[i] && !done; ) @@ -119,7 +119,7 @@ static int parse_options(WCHAR *argv[]) if (argv[i][1] == '-') { if (argv[i][2] == 0) { /* '--' end of options */ - done = 1; + done = TRUE; } else { /* long option */ for (j = 0; longopts[j][0]; j++)