diff options
author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2012-06-13 23:28:51 +0100 |
---|---|---|
committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2012-06-13 23:28:51 +0100 |
commit | a21bb1aa33e9887c06852db62526895df6091736 (patch) | |
tree | 6e05069971f04fb91f36d91818f78a62de93c1b1 /src/notes.c | |
parent | 96ef3d84629ef72fb662d95abbab3de634921678 (diff) | |
parent | 86ea6ceda75274621b7d5c3023c5b04da3ab677e (diff) | |
download | libgit2-a21bb1aa33e9887c06852db62526895df6091736.tar.gz |
Merge remote-tracking branch 'source/development' into development
Diffstat (limited to 'src/notes.c')
-rw-r--r-- | src/notes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/notes.c b/src/notes.c index 84ad94087..e87ea65fb 100644 --- a/src/notes.c +++ b/src/notes.c @@ -125,7 +125,7 @@ static int note_write(git_oid *out, git_repository *repo, return error; } - error = git_treebuilder_insert(&entry, tb, target + fanout, &oid, 0100644); + error = git_treebuilder_insert(&entry, tb, target + fanout, &oid, 0100644); //-V536 if (error < 0) { /* libgit2 doesn't support object removal (gc) yet */ /* we leave an orphaned blob object behind - TODO */ @@ -154,7 +154,7 @@ static int note_write(git_oid *out, git_repository *repo, if (error < 0) return error; - error = git_treebuilder_insert(NULL, tb, subtree, &oid, 0040000); + error = git_treebuilder_insert(NULL, tb, subtree, &oid, 0040000); //-V536 if (error < 0) { git_treebuilder_free(tb); return error; |