mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-18 18:05:36 +00:00
Stage 1 of clang compiler warning patches.
This commit is contained in:
@@ -117,7 +117,7 @@
|
||||
|
||||
date = [self startDate];
|
||||
|
||||
return [NSString stringWithFormat: @"%.2d", [date monthOfYear]];
|
||||
return [NSString stringWithFormat: @"%.2d", (int)[date monthOfYear]];
|
||||
}
|
||||
|
||||
- (NSString *) headerMonthString
|
||||
@@ -136,7 +136,7 @@
|
||||
|
||||
date = [self startDate];
|
||||
|
||||
return [NSString stringWithFormat: @"%d", [date yearOfCommonEra]];
|
||||
return [NSString stringWithFormat: @"%d", (int)[date yearOfCommonEra]];
|
||||
}
|
||||
|
||||
- (NSString *) localizedDayOfWeekName
|
||||
|
||||
Reference in New Issue
Block a user