From 24e4dcc97668302a6aa4d29955b960eeba9a28d0 Mon Sep 17 00:00:00 2001 From: rfm Date: Sat, 16 Mar 2013 08:07:17 +0000 Subject: [PATCH] make clearer when we are using windows TRUE/FALSE git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36367 72102866-910b-0410-8b05-ffd578937521 --- Source/NSFileManager.m | 4 ++-- Source/NSTimeZone.m | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/NSFileManager.m b/Source/NSFileManager.m index 29d0cc272..78a1a18a1 100644 --- a/Source/NSFileManager.m +++ b/Source/NSFileManager.m @@ -3243,7 +3243,7 @@ static NSSet *fileKeys = nil; #if defined(__MINGW__) DWORD returnCode = 0; PSID sidOwner; - BOOL result = TRUE; + int result = TRUE; _CHAR account[BUFSIZ]; _CHAR domain[BUFSIZ]; DWORD accountSize = 1024; @@ -3400,7 +3400,7 @@ static NSSet *fileKeys = nil; #if defined(__MINGW__) DWORD returnCode = 0; PSID sidOwner; - BOOL result = TRUE; + int result = TRUE; _CHAR account[BUFSIZ]; _CHAR domain[BUFSIZ]; DWORD accountSize = 1024; diff --git a/Source/NSTimeZone.m b/Source/NSTimeZone.m index c65eada9b..28ac99c15 100644 --- a/Source/NSTimeZone.m +++ b/Source/NSTimeZone.m @@ -2124,7 +2124,7 @@ localZoneString, [zone name], sign, s/3600, (s/60)%60); } /** - * Returns TRUE if the time zones have the same name. + * Returns YES if the time zones have the same name. */ - (BOOL) isEqualToTimeZone: (NSTimeZone*)aTimeZone {