summaryrefslogtreecommitdiff
path: root/debug/pread64_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/pread64_chk.c')
-rw-r--r--debug/pread64_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/pread64_chk.c b/debug/pread64_chk.c
index 4958881455..318579f0b5 100644
--- a/debug/pread64_chk.c
+++ b/debug/pread64_chk.c
@@ -26,5 +26,5 @@ __pread64_chk (int fd, void *buf, size_t nbytes, off64_t offset, size_t buflen)
if (nbytes > buflen)
__chk_fail ();
- return __pread64 (fd, buf, nbytes, offset);
+ return __libc_pread64 (fd, buf, nbytes, offset);
}