X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2Ffreopen.c;h=5b4f126dbddbcf4c9c11c5d177e48345e197be29;hp=57c3cd293b986f857bf96a50db2bd26107d57ac4;hb=708c91f4e9be2cfd6d35e71361956e13f3201b85;hpb=838951c97edc05cb2a25948ee542415b55b8f605 diff --git a/src/stdio/freopen.c b/src/stdio/freopen.c index 57c3cd29..5b4f126d 100644 --- a/src/stdio/freopen.c +++ b/src/stdio/freopen.c @@ -17,8 +17,8 @@ FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *re if (!filename) { f2 = fopen("/dev/null", mode); if (!f2) goto fail; - fl = syscall(SYS_fcntl, f2->fd, F_GETFL, 0); - if (fl < 0 || syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0) + fl = __syscall(SYS_fcntl, f2->fd, F_GETFL, 0); + if (syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0) goto fail2; } else { f2 = fopen(filename, mode);