summaryrefslogtreecommitdiff
path: root/src/unistd/pread.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-15 04:12:19 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-15 04:12:19 -0500
commitcfe373146d232d7c89a60920f77b9451bcfee96b (patch)
treedb859ab013e3db10f1f75950100f013a7c4e829e /src/unistd/pread.c
parenta5bf06c035168122725ec32537f99ab1e6c8432c (diff)
downloadmusl-cfe373146d232d7c89a60920f77b9451bcfee96b.tar.gz
finish moving 32-bit-specific junk out of source files.
Diffstat (limited to 'src/unistd/pread.c')
-rw-r--r--src/unistd/pread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/pread.c b/src/unistd/pread.c
index 029ba3d1..534215ac 100644
--- a/src/unistd/pread.c
+++ b/src/unistd/pread.c
@@ -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;
}