From: Junio C Hamano Date: Sun, 16 Sep 2012 05:47:42 +0000 (-0700) Subject: trace.c: mark a private file-scope symbol as static X-Git-Tag: v1.8.0-rc0~35^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cbfb93a12b7f60dcd0f5a0cd3f5f37ee694ecd3a;p=git.git trace.c: mark a private file-scope symbol as static Signed-off-by: Junio C Hamano --- diff --git a/cache.h b/cache.h index 032f6711c..bfa7189fe 100644 --- a/cache.h +++ b/cache.h @@ -1205,7 +1205,6 @@ extern void alloc_report(void); /* trace.c */ __attribute__((format (printf, 1, 2))) extern void trace_printf(const char *format, ...); -extern void trace_vprintf(const char *key, const char *format, va_list ap); __attribute__((format (printf, 2, 3))) extern void trace_argv_printf(const char **argv, const char *format, ...); extern void trace_repo_setup(const char *prefix); diff --git a/trace.c b/trace.c index d95341693..5ec0e3bd1 100644 --- a/trace.c +++ b/trace.c @@ -62,7 +62,7 @@ static int get_trace_fd(const char *key, int *need_close) static const char err_msg[] = "Could not trace into fd given by " "GIT_TRACE environment variable"; -void trace_vprintf(const char *key, const char *fmt, va_list ap) +static void trace_vprintf(const char *key, const char *fmt, va_list ap) { struct strbuf buf = STRBUF_INIT;