Skip to content

Commit

Permalink
Update string formatting to suppress warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kgn committed Jul 27, 2012
1 parent 5e6f14a commit 06cf894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ApptentiveConnect/source/Misc/ATUtilities.m
Expand Up @@ -339,7 +339,7 @@ + (NSString *)stringRepresentationOfDate:(NSDate *)aDate {
result = [NSString stringWithFormat:@"%@.%@ %@", dateString, truncatedFloat, timeZoneString];
} else {
// For some reason, we couldn't find the decimal place.
result = [NSString stringWithFormat:@"%@.%d %@", dateString, (long)(fractionalSeconds * 1000), timeZoneString];
result = [NSString stringWithFormat:@"%@.%ld %@", dateString, (long)(fractionalSeconds * 1000), timeZoneString];
}
[f release], f= nil;
}
Expand Down

0 comments on commit 06cf894

Please sign in to comment.