consistency fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39547 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2016-03-15 18:22:57 +00:00
parent 6b517d42a9
commit a2ed652ca2
3 changed files with 43 additions and 35 deletions

View file

@ -2575,8 +2575,9 @@ lastDayOfGregorianMonth(int month, int year)
/* IMPORT from NSCalendar date */
void
GSBreakTime(NSTimeInterval when, NSInteger*year, NSInteger*month, NSInteger*day,
NSInteger*hour, NSInteger*minute, NSInteger*second, NSInteger*mil);
GSBreakTime(NSTimeInterval when,
NSInteger *year, NSInteger *month, NSInteger *day,
NSInteger *hour, NSInteger *minute, NSInteger *second, NSInteger *mil);
@implementation GSWindowsTimeZone
@ -2801,7 +2802,7 @@ GSBreakTime(NSTimeInterval when, NSInteger*year, NSInteger*month, NSInteger*day,
- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate
{
int year, month, day, hour, minute, second, mil;
NSInteger year, month, day, hour, minute, second, mil;
int dow;
int daylightdate, count, maxdate;
NSTimeInterval when;