Fixed typo

Used g_warn() instead of g_warning()
This commit is contained in:
Gergely Polonkai 2013-01-06 14:10:11 +01:00
parent ce5d5b1a62
commit 3ea30a812b

View File

@ -142,7 +142,7 @@ wmud_logger(const gchar *log_domain, GLogLevelFlags log_level, const gchar *mess
case G_LOG_LEVEL_DEBUG:
g_print("[%s] DEBUG: %s\n", timestamp, message);
#ifndef DEBUG
g_warn("Logging a debug-level message without debugging support!");
g_warning("Logging a debug-level message without debugging support!");
#endif
break;
case G_LOG_LEVEL_MESSAGE: