From: Junio C Hamano Date: Fri, 16 Oct 2009 05:59:41 +0000 (-0700) Subject: format_commit_message(): fix function signature X-Git-Tag: v1.6.6-rc0~111 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7f98ebc8fd34107c6234cbad7b776054810b6fe1;p=git.git 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 --- diff --git a/commit.h b/commit.h index f4fc5c558..95f981a1a 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 *, diff --git a/pretty.c b/pretty.c index f5983f8ba..587101f84 100644 --- a/pretty.c +++ b/pretty.c @@ -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;