summaryrefslogtreecommitdiff
path: root/openbox/cparse.l
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/cparse.l')
-rw-r--r--openbox/cparse.l4
1 files 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