Skip to content

Commit

Permalink
Little compiler warning cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccgus committed May 24, 2013
1 parent 3a56feb commit a2b3a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FMDatabase.m
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ - (FMResultSet *)executeQuery:(NSString *)sql withArgumentsInArray:(NSArray*)arr

if (_traceExecution) {
if ([obj isKindOfClass:[NSData class]]) {
NSLog(@"data: %d byte", [(NSData*)obj length]);
NSLog(@"data: %ld bytes", (unsigned long)[(NSData*)obj length]);
}
else {
NSLog(@"obj: %@", obj);
Expand Down

0 comments on commit a2b3a57

Please sign in to comment.