Skip to content

Commit

Permalink
trace: correct trace_strbuf() parameter type for !HAVE_VARIADIC_MACROS
Browse files Browse the repository at this point in the history
Reported-by: dev <dev@cor0.com>
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
René Scharfe authored and Junio C Hamano committed Sep 8, 2014
1 parent c7d3f8c commit 792a646
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 792a646

Please sign in to comment.