mpy-cross/main: Print uncaught nlr jump to stderr.

This is to be consistent with the same change in the unix port,
4ab8bee82f.
pull/5725/head
David Lechner 2020-04-13 12:29:51 -05:00 zatwierdzone przez Damien George
rodzic 803e5eadea
commit 6943fb60fe
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -345,6 +345,6 @@ uint mp_import_stat(const char *path) {
}
void nlr_jump_fail(void *val) {
printf("FATAL: uncaught NLR %p\n", val);
fprintf(stderr, "FATAL: uncaught NLR %p\n", val);
exit(1);
}