Module: wine Branch: master Commit: 70205f583c30b4946a6a137953f275336d2788e3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=70205f583c30b4946a6a137953...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Tue Oct 15 00:27:14 2013 +0200
attrib: Use BOOL type where appropriate.
---
programs/attrib/attrib.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/attrib/attrib.c b/programs/attrib/attrib.c index 4342779..28172b0 100644 --- a/programs/attrib/attrib.c +++ b/programs/attrib/attrib.c @@ -253,7 +253,7 @@ int wmain(int argc, WCHAR *argv[]) WCHAR originalname[MAX_PATH]; DWORD attrib_set = 0; DWORD attrib_clear = 0; - BOOL attrib_recurse = 0; + BOOL attrib_recurse = FALSE; BOOL attrib_includedirs = FALSE; static const WCHAR help_option[] = {'/','?','\0'}; static const WCHAR wildcardsW[] = {'*','?','\0'};