From ec105d12c311753a8b9d0ae2f6e4b055d714fc4f Mon Sep 17 00:00:00 2001 From: rfm Date: Fri, 18 Jan 2008 16:04:41 +0000 Subject: [PATCH] Fixed error in sign of variable git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25975 72102866-910b-0410-8b05-ffd578937521 --- Source/NSTimeZone.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSTimeZone.m b/Source/NSTimeZone.m index ebafcc9c7..0d6677963 100644 --- a/Source/NSTimeZone.m +++ b/Source/NSTimeZone.m @@ -2177,7 +2177,7 @@ GSBreakTime(NSTimeInterval when, int *year, int *month, int *day, if (cSubKeys && (retCode == ERROR_SUCCESS)) { - int wLen = [name length]; + unsigned wLen = [name length]; wchar_t *wName = malloc((wLen+1) * sizeof(wchar_t)); if (wName)