Commit b4e7155c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wrc: Add a '\n' to a parser_warning() call.

parent 6369d7a0
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment