Skip to content

Commit

Permalink
Merge branch 'kb/perf-trace'
Browse files Browse the repository at this point in the history
Compilation fix for some compilers.

* kb/perf-trace:
  trace: correct trace_strbuf() parameter type for !HAVE_VARIADIC_MACROS
  • Loading branch information
Junio C Hamano committed Sep 19, 2014
2 parents 5dbdb3b + 792a646 commit 9ee9c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 9ee9c9d

Please sign in to comment.