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.
This commit is contained in:
Max Kellermann
2009-02-17 08:51:34 +01:00
parent c4d69f0ae1
commit d8db46edfa
6 changed files with 22 additions and 9 deletions

View File

@@ -21,6 +21,9 @@
#include <glib.h>
#include <mikmod.h>
#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;
}