diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-09-15 22:47:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-15 22:58:21 -0700 |
commit | cbfb93a12b7f60dcd0f5a0cd3f5f37ee694ecd3a (patch) | |
tree | cb7c5dd67b9a49c8cf33757ca4487db841e6c4c2 /trace.c | |
parent | 1e24845cc2265b616517aeb54fbe978f5ac0fa61 (diff) | |
download | git-cbfb93a12b7f60dcd0f5a0cd3f5f37ee694ecd3a.tar.gz |
trace.c: mark a private file-scope symbol as static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'trace.c')
-rw-r--r-- | trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |