diff options
author | David Aguilar <davvid@gmail.com> | 2014-08-31 13:11:31 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-02 11:33:32 -0700 |
commit | 24d36f1472794ba95ddc81ba8afb45fe30d1f35c (patch) | |
tree | bbbc981e49822ae68138a529f929656464762b0d /reflog-walk.c | |
parent | 96db324a73fdada6fbe7b63221986f8f18cc63b0 (diff) | |
download | git-24d36f1472794ba95ddc81ba8afb45fe30d1f35c.tar.gz |
stylefix: asterisks stick to the variable, not the typeda/styles
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'reflog-walk.c')
-rw-r--r-- | reflog-walk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reflog-walk.c b/reflog-walk.c index 9ce8b53ccc..0e5174b605 100644 --- a/reflog-walk.c +++ b/reflog-walk.c @@ -133,7 +133,7 @@ struct reflog_walk_info { struct commit_reflog *last_commit_reflog; }; -void init_reflog_walk(struct reflog_walk_info** info) +void init_reflog_walk(struct reflog_walk_info **info) { *info = xcalloc(1, sizeof(struct reflog_walk_info)); } |