X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Ffchmod.c;h=f9b99366e4790b01b1f94f460e657fc9439cd9cc;hb=b427c822655156f17d17cd00110ff5bc22299a38;hp=91897383f74ba25d2fd7e63591a20e58276e5b36;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stat/fchmod.c b/src/stat/fchmod.c index 91897383..f9b99366 100644 --- a/src/stat/fchmod.c +++ b/src/stat/fchmod.c @@ -3,5 +3,5 @@ int fchmod(int fd, mode_t mode) { - return syscall2(__NR_fchmod, fd, mode); + return syscall(SYS_fchmod, fd, mode); }