diff options
author | Max Kellermann <max@duempel.org> | 2009-02-17 08:51:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-17 08:51:34 +0100 |
commit | d8db46edfaed14c38d97e8880ff07fc629908b2d (patch) | |
tree | 716059a2d530fce866d2721e8093fa35f301d809 /src/decoder/vorbis_plugin.c | |
parent | c4d69f0ae1e0df6bac03fe131b4e8a40f75b5c4b (diff) | |
download | mpd-d8db46edfaed14c38d97e8880ff07fc629908b2d.tar.gz mpd-d8db46edfaed14c38d97e8880ff07fc629908b2d.tar.xz mpd-d8db46edfaed14c38d97e8880ff07fc629908b2d.zip |
decoders: added and fixed GLib log domains
Fixed the log domains of the renamed decoders. Added G_LOG_DOMAIN
macros in decoders which don't have one already.
Diffstat (limited to 'src/decoder/vorbis_plugin.c')
-rw-r--r-- | src/decoder/vorbis_plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decoder/vorbis_plugin.c b/src/decoder/vorbis_plugin.c index 526824cfc..982165783 100644 --- a/src/decoder/vorbis_plugin.c +++ b/src/decoder/vorbis_plugin.c @@ -44,6 +44,9 @@ #include <stdlib.h> #include <unistd.h> +#undef G_LOG_DOMAIN +#define G_LOG_DOMAIN "vorbis" + #if G_BYTE_ORDER == G_BIG_ENDIAN #define OGG_DECODE_USE_BIGENDIAN 1 #else |