diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-09-19 11:38:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-19 11:38:39 -0700 |
commit | 9ee9c9d068d841908c7022aad566096be8a439a9 (patch) | |
tree | d85c6f834f3ffb64770eb196f1cca31a01afd84b /trace.c | |
parent | Merge branch 'jc/parseopt-verify-short-name' (diff) | |
parent | trace: correct trace_strbuf() parameter type for !HAVE_VARIADIC_MACROS (diff) | |
download | tgif-9ee9c9d068d841908c7022aad566096be8a439a9.tar.xz |
Merge branch 'kb/perf-trace'
Compilation fix for some compilers.
* kb/perf-trace:
trace: correct trace_strbuf() parameter type for !HAVE_VARIADIC_MACROS
Diffstat (limited to 'trace.c')
-rw-r--r-- | trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,7 +216,7 @@ void trace_argv_printf(const char **argv, const char *format, ...) va_end(ap); } -void trace_strbuf(const char *key, const struct strbuf *data) +void trace_strbuf(struct trace_key *key, const struct strbuf *data) { trace_strbuf_fl(NULL, 0, key, data); } |