From 0b2e2888b1b68742e91a64bbec8540c7bfa3f179 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 17 Jul 2013 16:43:16 +0200 Subject: Fix clang format string warning. warning: format string is not a string literal (potentially insecure) [-Wformat-security] --- src/util/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/debug.c') diff --git a/src/util/debug.c b/src/util/debug.c index 3bf5e75a..324f0dae 100644 --- a/src/util/debug.c +++ b/src/util/debug.c @@ -274,5 +274,5 @@ int rotate_debug_files(void) void talloc_log_fn(const char *message) { - DEBUG(SSSDBG_FATAL_FAILURE, (message)); + DEBUG(SSSDBG_FATAL_FAILURE, ("%s", message)); } -- cgit