diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-10-15 22:59:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-19 00:48:59 -0700 |
commit | 7f98ebc8fd34107c6234cbad7b776054810b6fe1 (patch) | |
tree | 62b5bd0b004cf5d84f2784dc3138454cb0ae7c4b /pretty.c | |
parent | ee50af1566e78354c1a2d0feea2115b99a535d9d (diff) | |
download | git-7f98ebc8fd34107c6234cbad7b776054810b6fe1.tar.gz |
format_commit_message(): fix function signature
The format template string was declared as "const void *" for some unknown
reason, even though it obviously is meant to be passed a string. Make it
"const char *".
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -740,7 +740,7 @@ static size_t format_commit_item(struct strbuf *sb, const char *placeholder, } void format_commit_message(const struct commit *commit, - const void *format, struct strbuf *sb, + const char *format, struct strbuf *sb, enum date_mode dmode) { struct format_commit_context context; |