Compilation fix for some compilers.

* kb/perf-trace:
  trace: correct trace_strbuf() parameter type for !HAVE_VARIADIC_MACROS
This commit is contained in:
Junio C Hamano 2014-09-19 11:38:39 -07:00
Родитель 5dbdb3bed6 792a646a19
Коммит 9ee9c9d068
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);
}