summaryrefslogtreecommitdiff
path: root/obt
diff options
context:
space:
mode:
Diffstat (limited to 'obt')
-rw-r--r--obt/ddfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/obt/ddfile.c b/obt/ddfile.c
index 15e705d6..b4b5d298 100644
--- a/obt/ddfile.c
+++ b/obt/ddfile.c
@@ -94,9 +94,9 @@ static void parse_error(const gchar *m, const ObtDDParse *const parse,
gboolean *error)
{
if (!parse->filename)
- g_warning("%s at line %lu of input\n", m, parse->lineno);
+ g_warning("%s at line %lu of input", m, parse->lineno);
else
- g_warning("%s at line %lu of file %s\n",
+ g_warning("%s at line %lu of file %s",
m, parse->lineno, parse->filename);
if (error) *error = TRUE;
}