Skip to content

Commit

Permalink
wrong string formatter warning fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ap4y committed Feb 9, 2013
1 parent a3e1343 commit ff06bd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OrigamiEngine/Plugins/HTTPSource.m
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ - (BOOL)open:(NSURL *)url {
_byteReaded = 0;
_byteCount = 0;

[self prepareCache:[NSString stringWithFormat:@"%x.%@",
[[url absoluteString] hash],
[self prepareCache:[NSString stringWithFormat:@"%lx.%@",
(unsigned long)[[url absoluteString] hash],
url.pathExtension]];

_downloadingSemaphore = dispatch_semaphore_create(0);
Expand Down

0 comments on commit ff06bd4

Please sign in to comment.