Skip to content

Commit

Permalink
Warnings removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mento committed Mar 27, 2012
1 parent 83d9898 commit 5247a65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UnitTest/Test1.h
Expand Up @@ -6,5 +6,5 @@
GPGController *gpgc;
NSString *tempDir;
}

- (void)logDataContent:(NSData *)data message:(NSString *)message;
@end
2 changes: 1 addition & 1 deletion UnitTest/Test1.m
Expand Up @@ -40,7 +40,7 @@ - (void)testCase1 {
NSArray *array = [NSArray arrayWithObjects:[NSNumber numberWithInt:1],
[NSNumber numberWithInt:2], [NSNumber numberWithInt:3],
[NSNumber numberWithInt:4], [NSNumber numberWithInt:5], nil];
NSLog(@"Found at position: %lu", [array indexOfObject:[NSNumber numberWithInt:5]]);
NSLog(@"Found at position: %lu", (unsigned long)[array indexOfObject:[NSNumber numberWithInt:5]]);

NSSet *keys = [gpgc allKeys];
STAssertTrue(keys != nil && [keys count] == 0, @"Can’t list keys.");
Expand Down

0 comments on commit 5247a65

Please sign in to comment.