Skip to content

Commit

Permalink
Cast NSUInteger to unsigned long to avoid 64 bit warning
Browse files Browse the repository at this point in the history
  • Loading branch information
adamaveray committed Feb 8, 2014
1 parent b527282 commit 2f8f7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Component/private/CPAnimationStep.m
Expand Up @@ -112,7 +112,7 @@ - (NSString*) description {
[result appendFormat:@"for:%.1f ", self.duration];
}
if (self.options > 0) {
[result appendFormat:@"options:%d ", self.options];
[result appendFormat:@"options:%lu ", (unsigned long)self.options];
}
[result appendFormat:@"animate:%@", self.step];
[result appendString:@"]"];
Expand Down

0 comments on commit 2f8f7e7

Please sign in to comment.