Skip to content

Commit

Permalink
Minor bug fix for compiler warning (NSTimeInterval is a double)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiehanson committed Jun 6, 2011
1 parent b3f7cb1 commit 00ee4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lumberjack/DDFileLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ - (NSString *)description
self.creationDate, @"creationDate",
self.modificationDate, @"modificationDate",
[NSNumber numberWithUnsignedLongLong:self.fileSize], @"fileSize",
[NSNumber numberWithInteger:self.age], @"age",
[NSNumber numberWithDouble:self.age], @"age",
[NSNumber numberWithBool:self.isArchived], @"isArchived",
nil] description];
}
Expand Down

0 comments on commit 00ee4df

Please sign in to comment.