From 4a3b0b25f182727876bfb01748b2d00dd43f9ad7 Mon Sep 17 00:00:00 2001 From: Karsten Blees Date: Wed, 11 Jun 2014 09:57:23 +0200 Subject: trace: consistently name the format parameter The format parameter to trace_printf functions is sometimes abbreviated 'fmt'. Rename to 'format' everywhere (consistent with POSIX' printf specification). Signed-off-by: Karsten Blees Signed-off-by: Junio C Hamano --- trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trace.h') diff --git a/trace.h b/trace.h index 6cc4541425..8fea50bf1d 100644 --- a/trace.h +++ b/trace.h @@ -11,7 +11,7 @@ extern void trace_argv_printf(const char **argv, const char *format, ...); extern void trace_repo_setup(const char *prefix); extern int trace_want(const char *key); __attribute__((format (printf, 2, 3))) -extern void trace_printf_key(const char *key, const char *fmt, ...); +extern void trace_printf_key(const char *key, const char *format, ...); extern void trace_strbuf(const char *key, const struct strbuf *buf); #endif /* TRACE_H */ -- cgit v1.2.1