diff options
author | Max Kellermann <max@duempel.org> | 2009-02-19 09:24:59 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-19 09:24:59 +0100 |
commit | eac2da635dbe93159d67a202c4c68d0b77c0c72a (patch) | |
tree | d625c699284f070687ab3cac8a7f2e1fc56af36d /src/conf.c | |
parent | 11e680d6405161ca0c06adddf3e99433dc8922e8 (diff) | |
download | mpd-eac2da635dbe93159d67a202c4c68d0b77c0c72a.tar.gz mpd-eac2da635dbe93159d67a202c4c68d0b77c0c72a.tar.xz mpd-eac2da635dbe93159d67a202c4c68d0b77c0c72a.zip |
added G_LOG_DOMAIN macros to several libraries
Define the GLib logging domain in the following libraries: conf,
daemon, event_pipe, log.
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/conf.c b/src/conf.c index ea3f449dc..2f022411e 100644 --- a/src/conf.c +++ b/src/conf.c @@ -29,6 +29,9 @@ #include <stdlib.h> #include <errno.h> +#undef G_LOG_DOMAIN +#define G_LOG_DOMAIN "config" + #define MAX_STRING_SIZE MPD_PATH_MAX+80 #define CONF_COMMENT '#' |