X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Funistd%2Fpread.c;h=3d2799fdd49dfec3a2a4d2d5896b8ab06fef3f27;hb=5652d70054daf3c2c9b6d475fdf9d24a940e51aa;hp=1bf0c754bd0cb8cd5a51ec1f06504138be5a28ac;hpb=feee98903cd8119d9a3db62589246a940f44a9f5;p=musl diff --git a/src/unistd/pread.c b/src/unistd/pread.c index 1bf0c754..3d2799fd 100644 --- a/src/unistd/pread.c +++ b/src/unistd/pread.c @@ -4,7 +4,7 @@ ssize_t pread(int fd, void *buf, size_t size, off_t ofs) { - return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL(ofs)); + return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL_O(ofs)); } LFS64(pread);