Browse Source

unix/main: Get rid of perror() which uses stdio.

pull/1640/merge
Paul Sokolovsky 9 years ago
parent
commit
9f10d3fb63
  1. 3
      unix/main.c

3
unix/main.c

@ -515,8 +515,7 @@ int main(int argc, char **argv) {
char *pathbuf = malloc(PATH_MAX); char *pathbuf = malloc(PATH_MAX);
char *basedir = realpath(argv[a], pathbuf); char *basedir = realpath(argv[a], pathbuf);
if (basedir == NULL) { if (basedir == NULL) {
mp_printf(&mp_stderr_print, "%s: can't open file '%s': [Errno %d] ", argv[0], argv[a], errno); mp_printf(&mp_stderr_print, "%s: can't open file '%s': [Errno %d] %s\n", argv[0], argv[a], errno, strerror(errno));
perror("");
// CPython exits with 2 in such case // CPython exits with 2 in such case
ret = 2; ret = 2;
break; break;

Loading…
Cancel
Save