mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 19:05:25 +00:00
Stage 1 of clang compiler warning patches.
This commit is contained in:
@@ -155,14 +155,14 @@
|
||||
*/
|
||||
|
||||
[_buf appendFormat:@"%02i:%02i",
|
||||
[_date hourOfDay],
|
||||
[_date minuteOfHour]];
|
||||
(int)[_date hourOfDay],
|
||||
(int)[_date minuteOfHour]];
|
||||
if (_refDate && ![_date isDateOnSameDay:_refDate]) {
|
||||
[_buf appendFormat:@" (%02i-%02i",
|
||||
[_date monthOfYear],
|
||||
[_date dayOfMonth]];
|
||||
(int)[_date monthOfYear],
|
||||
(int)[_date dayOfMonth]];
|
||||
if ([_date yearOfCommonEra] != [_refDate yearOfCommonEra])
|
||||
[_buf appendFormat:@"-%04i", [_date yearOfCommonEra]];
|
||||
[_buf appendFormat:@"-%04i", (int)[_date yearOfCommonEra]];
|
||||
[_buf appendString:@")"];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user