summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-10-16 05:59:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-10-19 07:48:59 (GMT)
commit7f98ebc8fd34107c6234cbad7b776054810b6fe1 (patch)
tree62b5bd0b004cf5d84f2784dc3138454cb0ae7c4b /commit.h
parentee50af1566e78354c1a2d0feea2115b99a535d9d (diff)
downloadgit-7f98ebc8fd34107c6234cbad7b776054810b6fe1.zip
git-7f98ebc8fd34107c6234cbad7b776054810b6fe1.tar.gz
git-7f98ebc8fd34107c6234cbad7b776054810b6fe1.tar.bz2
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 'commit.h')
-rw-r--r--commit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.h b/commit.h
index f4fc5c5..95f981a 100644
--- a/commit.h
+++ b/commit.h
@@ -70,7 +70,7 @@ extern char *reencode_commit_message(const struct commit *commit,
const char **encoding_p);
extern void get_commit_format(const char *arg, struct rev_info *);
extern void format_commit_message(const struct commit *commit,
- const void *format, struct strbuf *sb,
+ const char *format, struct strbuf *sb,
enum date_mode dmode);
extern void pretty_print_commit(enum cmit_fmt fmt, const struct commit*,
struct strbuf *,