Commit 0b90366c by Xavier L

Fixes indentation

parent f0e37a8b
...@@ -1286,17 +1286,17 @@ static int cb_tree_walk(const char *root, const git_tree_entry *entry, void *pay ...@@ -1286,17 +1286,17 @@ static int cb_tree_walk(const char *root, const git_tree_entry *entry, void *pay
int git_packbuilder_insert_commit(git_packbuilder *pb, const git_oid *oid) int git_packbuilder_insert_commit(git_packbuilder *pb, const git_oid *oid)
{ {
git_commit *commit; git_commit *commit;
if (git_commit_lookup(&commit, pb->repo, oid) < 0 || if (git_commit_lookup(&commit, pb->repo, oid) < 0 ||
git_packbuilder_insert(pb, oid, NULL) < 0) git_packbuilder_insert(pb, oid, NULL) < 0)
return -1; return -1;
if (git_packbuilder_insert_tree(pb, git_commit_tree_id(commit)) < 0) if (git_packbuilder_insert_tree(pb, git_commit_tree_id(commit)) < 0)
return -1; return -1;
git_commit_free(commit); git_commit_free(commit);
return 0; return 0;
} }
int git_packbuilder_insert_tree(git_packbuilder *pb, const git_oid *oid) int git_packbuilder_insert_tree(git_packbuilder *pb, const git_oid *oid)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment