Module: wine Branch: master Commit: b4e7155c1ae35fa2ed4f012c26be3765f7f20d47 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b4e7155c1ae35fa2ed4f012c26... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Aug 26 10:54:45 2009 +0200 wrc: Add a '\n' to a parser_warning() call. --- tools/wrc/parser.l | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/wrc/parser.l b/tools/wrc/parser.l index 8ed0445..3ea04de 100644 --- a/tools/wrc/parser.l +++ b/tools/wrc/parser.l @@ -638,7 +638,7 @@ static string_t *get_buffered_cstring(void) parser_error("String %s does not convert identically to Unicode and back in codepage %d. " "Try using a Unicode string instead", str->str.cstr, current_codepage ); if (check_valid_utf8( str, current_codepage )) - parser_warning( "string \"%s\" seems to be UTF-8 but codepage %u is in use.", + parser_warning( "string \"%s\" seems to be UTF-8 but codepage %u is in use.\n", str->str.cstr, current_codepage ); free_string( str ); return str_w;