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 {
63
63
git_buf buf = GIT_BUF_INIT_CONST (0 , NULL );
64
64
git_patch_to_buf (&buf, self.git_patch );
65
65
66
- NSData * buffer = [[NSData alloc ] initWithBytes: buf.ptr length: buf.size];
66
+ NSData * buffer = [[NSData alloc ] initWithBytes: buf.ptr length: buf.size];
67
67
git_buf_free (&buf);
68
68
69
69
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
76
76
self = [super init ];
77
77
if (self == nil ) return nil ;
78
78
79
- git_tree_entry* copyOfEntry = nil ;
79
+ git_tree_entry * copyOfEntry = nil ;
80
80
int gitError = git_tree_entry_dup (©OfEntry, theEntry);
81
81
if (gitError != GIT_OK) {
82
82
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