From dbb9d18decbe607767b4d5e201c0ff18cba6b818 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Wed, 9 Sep 2020 20:44:05 +0100 Subject: attribute format on some appropriate functions --- trace.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'trace.h') diff --git a/trace.h b/trace.h index cef9927..8dee696 100644 --- a/trace.h +++ b/trace.h @@ -5,7 +5,15 @@ #ifndef PACK_TRACE_H #define PACK_TRACE_H +#ifdef DEVEL +#define ATTRIBUTE_FORMAT(type, fmt, args) __attribute__((format(type, fmt, args))) +#else +#define ATTRIBUTE_FORMAT(type, fmt, args) +#endif + +ATTRIBUTE_FORMAT(printf, 1, 2) void tr_call(const char *fmt, ...); +ATTRIBUTE_FORMAT(printf, 1, 2) void tr_debug(const char *fmt, ...); #endif // !PACK_TRACE_H -- cgit v1.2.3-54-g00ecf