finish moving 32-bit-specific junk out of source files.
[musl] / src / unistd / pread.c
index 029ba3d..534215a 100644 (file)
@@ -6,7 +6,7 @@ ssize_t pread(int fd, void *buf, size_t size, off_t ofs)
 {
        ssize_t r;
        CANCELPT_BEGIN;
-       r = syscall5(__NR_pread64, fd, (long)buf, size, SYSCALL_LL(ofs));
+       r = syscall5(__NR_pread, fd, (long)buf, size, SYSCALL_LL(ofs));
        CANCELPT_END;
        return r;
 }