summaryrefslogtreecommitdiff
path: root/src/commit_graph.c
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2021-09-14 07:44:37 -0400
committerGitHub <noreply@github.com>2021-09-14 07:44:37 -0400
commit5bd49aeeeb7a69f85249b970ac4e2c7011b7127d (patch)
tree48e6e60b646b39db3cd8484dd68fd4455ce47b04 /src/commit_graph.c
parent1f6263b82bf079b8accaecae586e1fa2da2e7736 (diff)
parent379c46463cbdd73e04c5efc180309d4600e56624 (diff)
downloadlibgit2-5bd49aeeeb7a69f85249b970ac4e2c7011b7127d.tar.gz
Merge pull request #6045 from punkymaniac/qa-fix-coding-style-pointer
Fix coding style for pointer
Diffstat (limited to 'src/commit_graph.c')
-rw-r--r--src/commit_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit_graph.c b/src/commit_graph.c
index 71e415e99..f663fc5d3 100644
--- a/src/commit_graph.c
+++ b/src/commit_graph.c
@@ -728,7 +728,7 @@ int git_commit_graph_writer_add_revwalk(git_commit_graph_writer *w, git_revwalk
git_oid id;
git_repository *repo = git_revwalk_repository(walk);
git_commit *commit;
- struct packed_commit* packed_commit;
+ struct packed_commit *packed_commit;
while ((git_revwalk_next(&id, walk)) == 0) {
error = git_commit_lookup(&commit, repo, &id);