Commit fd14bdeb authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Delete the \r not the \n in PRINTERROR.

parent 160f5621
...@@ -515,7 +515,7 @@ void PRINTERROR(void) ...@@ -515,7 +515,7 @@ void PRINTERROR(void)
(LPSTR)&msg, 0, NULL); (LPSTR)&msg, 0, NULL);
/* eliminate trailing newline, is this a Wine bug? */ /* eliminate trailing newline, is this a Wine bug? */
*(strrchr(msg, '\n')) = '\0'; *(strrchr(msg, '\r')) = '\0';
WINE_TRACE("error: '%s'\n", msg); WINE_TRACE("error: '%s'\n", msg);
} }
......
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