all repos — openbox @ 4e70343b3ed57db27c130de69e39f372694ef910

openbox fork - make it a bit more like ryudo

g_warning adds a \n
Dana Jansens danakj@orodu.net
commit

4e70343b3ed57db27c130de69e39f372694ef910

parent

5ca9c2e03cfdd8c5831c9b62187c7cec8fcdbfda

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M obt/ddfile.cobt/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; }