From 97030b6c6b0fb6ff629ae31e483704d0a2207a53 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Sun, 8 Oct 2006 17:07:05 +0300 Subject: [PATCH] config: fix compilation Accidentally built with --disable-config, didn't notice that the previous commit to clean up the debugging broke things horribly. --- config/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.c b/config/config.c index f74495e39..8cb4406b5 100644 --- a/config/config.c +++ b/config/config.c @@ -37,8 +37,8 @@ #define MATCH_RULE "type='method_call',interface='org.x.config.input'" #define MALFORMED_MSG "config: malformed message, dropping" -#define MALFORMED_MESSAGE DebugF(MALFORMED_MSG) -#define MALFORMED_MESSAGE_ERROR DEBUGF(MALFORMED_MSG ": %s, %s", \ +#define MALFORMED_MESSAGE() DebugF(MALFORMED_MSG) +#define MALFORMED_MESSAGE_ERROR() DebugF(MALFORMED_MSG ": %s, %s", \ error.name, error.message) static DBusConnection *configConnection = NULL;