Skip to content

Commit

Permalink
Adding missing ";".
Browse files Browse the repository at this point in the history
Fixes syntax error.
  • Loading branch information
marcelofabri committed Jul 12, 2013
1 parent 21c3694 commit 3bb7fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SSZipArchive.m
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ + (NSDate *)_dateWithMSDOSFormat:(UInt32)msdosDateTime {
static const UInt32 kMinuteMask = 0x7E0;
static const UInt32 kSecondMask = 0x1F;

static NSCalendar *gregorian
static NSCalendar *gregorian;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
Expand Down

0 comments on commit 3bb7fe8

Please sign in to comment.