File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ - (NSData *)patchData {
6363 git_buf buf = GIT_BUF_INIT_CONST (0 , NULL );
6464 git_patch_to_buf (&buf, self.git_patch );
6565
66- NSData * buffer = [[NSData alloc ] initWithBytes: buf.ptr length: buf.size];
66+ NSData * buffer = [[NSData alloc ] initWithBytes: buf.ptr length: buf.size];
6767 git_buf_free (&buf);
6868
6969 return buffer;
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ - (instancetype)initWithEntry:(const git_tree_entry *)theEntry parentTree:(GTTre
7676 self = [super init ];
7777 if (self == nil ) return nil ;
7878
79- git_tree_entry* copyOfEntry = nil ;
79+ git_tree_entry * copyOfEntry = nil ;
8080 int gitError = git_tree_entry_dup (©OfEntry, theEntry);
8181 if (gitError != GIT_OK) {
8282 if (error != NULL ) *error = [NSError git_errorFor: gitError description: @" Failed to duplicate tree entry." ];
You can’t perform that action at this time.
0 commit comments