From: Ramsay Jones Date: Sun, 5 Jan 2014 23:55:01 +0000 (+0000) Subject: send-pack.c: mark a file-local function static X-Git-Tag: v1.9-rc0~3^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16a2743cd08c74d71b17e663c05c878fddffa03c;p=git send-pack.c: mark a file-local function static Commit f2c681cf ("send-pack: support pushing from a shallow clone via http", 05-12-2013) adds the 'advertise_shallow_grafts_buf' function as an external symbol. Noticed by sparse. ("'advertise_shallow_grafts_buf' was not declared. Should it be static?") Signed-off-by: Ramsay Jones Signed-off-by: Junio C Hamano --- diff --git a/send-pack.c b/send-pack.c index 848d15e9b5..cdcdea7a75 100644 --- a/send-pack.c +++ b/send-pack.c @@ -183,7 +183,7 @@ static int advertise_shallow_grafts_cb(const struct commit_graft *graft, void *c return 0; } -void advertise_shallow_grafts_buf(struct strbuf *sb) +static void advertise_shallow_grafts_buf(struct strbuf *sb) { if (!is_repository_shallow()) return;