diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2011-04-07 19:26:23 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-11 10:35:25 -0700 |
commit | c8f1444d9e708e3994c74c180194c43bf1588b65 (patch) | |
tree | 1cbdfa62863ce062e131bdce8a181b037bb0dc39 /commit.h | |
parent | d27da38a19d0c21702a012689f256b83545f2e7f (diff) | |
download | git-c8f1444d9e708e3994c74c180194c43bf1588b65.tar.gz |
sparse: Fix an "symbol 'format_subject' not declared" warning
In order to fix the warning, we add an extern declaration for this
function to the "commit.h" header file, along with all other non-
static functions defined in pretty.c. Also, we remove the function
declaration from builtin/shortlog.c, since it is no longer needed.
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -90,6 +90,8 @@ extern char *logmsg_reencode(const struct commit *commit, 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 const char *format_subject(struct strbuf *sb, const char *msg, + const char *line_separator); extern void userformat_find_requirements(const char *fmt, struct userformat_want *w); extern void format_commit_message(const struct commit *commit, const char *format, struct strbuf *sb, |