DEVTOOLS: Print error message to stderr, not stdout.

This commit is contained in:
Christoph Mallon 2012-03-17 18:48:01 +01:00
parent b520b5db69
commit 4ed136a6c1

View File

@ -358,7 +358,7 @@ char *stripLine(char *const line) {
case '\\': c = '\\'; break;
default:
// Just skip
fprintf(stdout, "Unsupported special character \"\\%c\" in string. Please contact ScummVM developers.\n", c);
fprintf(stderr, "Unsupported special character \"\\%c\" in string. Please contact ScummVM developers.\n", c);
continue;
}
}