mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
Solved compilation warnings
This commit is contained in:
+2
-2
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user