From 3ea30a812b73552278fe7eebb19666abc4a1bc43 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sun, 6 Jan 2013 14:10:11 +0100 Subject: [PATCH] Fixed typo Used g_warn() instead of g_warning() --- wmud/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmud/main.c b/wmud/main.c index 4603fac..64ad870 100644 --- a/wmud/main.c +++ b/wmud/main.c @@ -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: