From a6815038d61b64d5f13d28b6e5f67fe1630213e9 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 26 Mar 2003 12:12:33 +0000 Subject: [PATCH] use g_warning not printf --- openbox/cparse.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/cparse.l b/openbox/cparse.l index 966fc6e4..70524007 100644 --- a/openbox/cparse.l +++ b/openbox/cparse.l @@ -44,8 +44,8 @@ static void stringvalue() entry.type = Config_String; entry.value.string = g_strdup(cparsetext+1); /* drop the left quote */ if (entry.value.string[cparseleng-2] != '"') - printf("warning: improperly terminated string on line %d\n", - lineno); + g_warning("improperly terminated string on line %d", + lineno); else entry.value.string[cparseleng-2] = '\0'; } else -- 2.39.2