summaryrefslogtreecommitdiff
path: root/src/dirent
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-03-20 00:16:43 -0400
committerRich Felker <dalias@aerifal.cx>2011-03-20 00:16:43 -0400
commitaa398f56fa398f2202b04e82c67f822f3233786f (patch)
tree7833c046c55b3d2b67c66433bacfa429a650d310 /src/dirent
parentbe82e122bf37fdcd1766d1ed220f0300b30ab6a3 (diff)
downloadmusl-aa398f56fa398f2202b04e82c67f822f3233786f.tar.gz
global cleanup to use the new syscall interface
Diffstat (limited to 'src/dirent')
-rw-r--r--src/dirent/__getdents.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dirent/__getdents.c b/src/dirent/__getdents.c
index dc373440..1acd5a69 100644
--- a/src/dirent/__getdents.c
+++ b/src/dirent/__getdents.c
@@ -4,7 +4,7 @@
int __getdents(int fd, struct dirent *buf, size_t len)
{
- return syscall3(__NR_getdents, fd, (long)buf, len);
+ return syscall(SYS_getdents, fd, buf, len);
}
weak_alias(__getdents, getdents);