diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-03-24 21:37:41 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-03-25 18:11:13 -0400 |
| commit | 4e70343b3ed57db27c130de69e39f372694ef910 (patch) | |
| tree | 871fbaea994361141146c432818e81460078ec5c /obt | |
| parent | 5ca9c2e03cfdd8c5831c9b62187c7cec8fcdbfda (diff) | |
g_warning adds a \n
Diffstat (limited to 'obt')
| -rw-r--r-- | obt/ddfile.c | 4 |
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; } |
