diff options
author | punkymaniac <punkymaniac@protonmail.ch> | 2021-09-09 19:49:04 +0200 |
---|---|---|
committer | punkymaniac <punkymaniac@protonmail.ch> | 2021-09-09 19:49:04 +0200 |
commit | 379c46463cbdd73e04c5efc180309d4600e56624 (patch) | |
tree | 0c56f001ecceba8a072f896f01bd7750f9c4034d /src/commit_graph.c | |
parent | f1b89a201e9329e6df48f8d6cf320781570c936a (diff) | |
download | libgit2-379c46463cbdd73e04c5efc180309d4600e56624.tar.gz |
Fix coding style for pointer
Make some syntax change to follow coding style.
Diffstat (limited to 'src/commit_graph.c')
-rw-r--r-- | src/commit_graph.c | 2 |
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); |