From 5857491a2aa7d4975100d90f1ad62c08aa345e3e Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 16 Nov 2018 16:25:49 +0100 Subject: core: Simplify the trace maros by using variadics. * src/debug.h (TRACE_BEG, TRACE_LOG, TRACE_SUC): Use variadic macros and remove the TRACE_BEG1 et al. Change all users to always pass a format string. (TRACE): Ditto. * src/debug.c (_gpgme_debugf): New. * configure.ac : Add -Wno-format-zero-length. -- This makes it easier for use to enable format checks. The zero-length format is required to allow for an empty format due to the comman problematic of __VA_ARGS__. Signed-off-by: Werner Koch --- src/vfs-mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vfs-mount.c') diff --git a/src/vfs-mount.c b/src/vfs-mount.c index bb5f056c..c6ee7c97 100644 --- a/src/vfs-mount.c +++ b/src/vfs-mount.c @@ -234,7 +234,7 @@ gpgme_op_vfs_mount (gpgme_ctx_t ctx, const char *container_file, { gpg_error_t err; - TRACE_BEG4 (DEBUG_CTX, "gpgme_op_vfs_mount", ctx, + TRACE_BEG (DEBUG_CTX, "gpgme_op_vfs_mount", ctx, "container=%s, mount_dir=%s, flags=0x%x, op_err=%p", container_file, mount_dir, flags, op_err); -- cgit v1.2.3