Solved compilation warnings

This commit is contained in:
German Laullon
2011-03-10 16:04:45 -08:00
parent abbb2081c4
commit f9ccf1fe8d
31 changed files with 41 additions and 49 deletions
+2 -2
View File
@@ -26,9 +26,9 @@
{
NSAssert(status == NEW || self.commitBlobSHA, @"File is not new, but doesn't have an index entry!");
if (!self.commitBlobSHA)
return [NSString stringWithFormat:@"0 0000000000000000000000000000000000000000\t%@\0", self.path];
return [NSString stringWithFormat:@"0 0000000000000000000000000000000000000000\t%@", self.path];
else
return [NSString stringWithFormat:@"%@ %@\t%@\0", self.commitBlobMode, self.commitBlobSHA, self.path];
return [NSString stringWithFormat:@"%@ %@\t%@", self.commitBlobMode, self.commitBlobSHA, self.path];
}
+ (NSImage *) iconForStatus:(PBChangedFileStatus) aStatus {