unix/main: Print usage and NLR errors to stderr instead of stdout.

When stdout is redirected it is useful to have errors printed to stderr
instead of being redirected.

mp_stderr_print() can't be used in these two instances since the
MicroPython runtime is not running so we use fprintf(stderr) instead.
pull/5601/head
David Lechner 2020-01-29 11:23:59 -06:00 zatwierdzone przez Damien George
rodzic 61f64c78a6
commit 4ab8bee82f
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -391,7 +391,7 @@ STATIC void pre_process_options(int argc, char **argv) {
#endif
} else {
invalid_arg:
printf("Invalid option\n");
fprintf(stderr, "Invalid option\n");
exit(usage(argv));
}
a++;
@ -709,6 +709,6 @@ uint mp_import_stat(const char *path) {
#endif
void nlr_jump_fail(void *val) {
printf("FATAL: uncaught NLR %p\n", val);
fprintf(stderr, "FATAL: uncaught NLR %p\n", val);
exit(1);
}