Skip to content

Commit

Permalink
suppress NSInteger warning
Browse files Browse the repository at this point in the history
  • Loading branch information
idokleinman committed Jul 23, 2015
1 parent 283dafe commit 2d42135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pod/Classes/SDK/SparkEvent.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ -(instancetype)initWithEventDict:(NSDictionary *)eventDict

-(NSString *)description
{
return [NSString stringWithFormat:@"<Event: %@, DeviceID: %@, Data: %@, Time: %@, TTL: %ld>",self.event,self.deviceID,self.data,self.time,self.ttl];
return [NSString stringWithFormat:@"<Event: %@, DeviceID: %@, Data: %@, Time: %@, TTL: %ld>",self.event,self.deviceID,self.data,self.time,(long)self.ttl];
}
@end

0 comments on commit 2d42135

Please sign in to comment.