Skip to content

Commit 998f9c1

Browse files
committed
fixup: strange indentation
1 parent 8f68ad9 commit 998f9c1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/commit.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ static int git_commit__create_buffer_internal(
8080
}
8181

8282
static int validate_tree_and_parents(git_array_oid_t *parents, git_repository *repo, const git_oid *tree,
83-
git_commit_parent_callback parent_cb, void *parent_payload,
84-
const git_oid *current_id, bool validate)
83+
git_commit_parent_callback parent_cb, void *parent_payload,
84+
const git_oid *current_id, bool validate)
8585
{
8686
size_t i;
8787
int error;
@@ -152,8 +152,8 @@ static int git_commit__create_internal(
152152
goto cleanup;
153153

154154
error = git_commit__create_buffer_internal(&buf, author, committer,
155-
message_encoding, message, tree,
156-
&parents);
155+
message_encoding, message, tree,
156+
&parents);
157157

158158
if (error < 0)
159159
goto cleanup;
@@ -582,7 +582,7 @@ const char *git_commit_body(git_commit *commit)
582582
break;
583583

584584
if (*msg)
585-
commit->body = git__strndup(msg, end - msg + 1);
585+
commit->body = git__strndup(msg, end - msg + 1);
586586
}
587587

588588
return commit->body;

0 commit comments

Comments
 (0)