Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10 from stackmob/master
Browse files Browse the repository at this point in the history
Fix int conversion warning
  • Loading branch information
mattmassicotte committed Mar 30, 2012
2 parents 061eae8 + f8d9fd7 commit 8d107a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SecureUDID.m
Expand Up @@ -209,7 +209,7 @@ void removeAllSecureUDIDData(void) {
NSMutableDictionary* mostRecentDictionary;

usablePasteboard = nil;
lowestUnusedIndex = INTMAX_MAX;
lowestUnusedIndex = -1;
mostRecentDate = [NSDate distantPast];
mostRecentDictionary = nil;

Expand Down

0 comments on commit 8d107a5

Please sign in to comment.