Skip to content

Commit

Permalink
DEVTOOLS: Print error message to stderr, not stdout.
Browse files Browse the repository at this point in the history
  • Loading branch information
chmallon committed Mar 17, 2012
1 parent b520b5d commit 4ed136a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/create_translations/po_parser.cpp
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 4ed136a

Please sign in to comment.