From d8db46edfaed14c38d97e8880ff07fc629908b2d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 17 Feb 2009 08:51:34 +0100 Subject: 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. --- src/decoder/mikmod_plugin.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/decoder/mikmod_plugin.c') diff --git a/src/decoder/mikmod_plugin.c b/src/decoder/mikmod_plugin.c index af715c0ca..7ba8ab3f7 100644 --- a/src/decoder/mikmod_plugin.c +++ b/src/decoder/mikmod_plugin.c @@ -21,6 +21,9 @@ #include #include +#undef G_LOG_DOMAIN +#define G_LOG_DOMAIN "mikmod" + /* this is largely copied from alsaplayer */ #define MIKMOD_FRAME_SIZE 4096 @@ -204,7 +207,7 @@ static struct tag *modTagDup(const char *file) g_free(path2); if (moduleHandle == NULL) { - g_debug("modTagDup: Failed to open file: %s\n", file); + g_debug("Failed to open file: %s", file); return NULL; } -- cgit v1.2.3