summaryrefslogtreecommitdiff
path: root/config/config.c
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-10-08 17:07:05 +0300
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-10-08 17:07:05 +0300
commit97030b6c6b0fb6ff629ae31e483704d0a2207a53 (patch)
treec21f327f3abc58b9c6ff493709a34865a074457a /config/config.c
parent14b157bdb1f2cd5feba03ba0815d7c5b2dd6633f (diff)
config: fix compilation
Accidentally built with --disable-config, didn't notice that the previous commit to clean up the debugging broke things horribly.
Diffstat (limited to 'config/config.c')
-rw-r--r--config/config.c4
1 files 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;