diff options
Diffstat (limited to 'nptl/pt-fcntl.c')
-rw-r--r-- | nptl/pt-fcntl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pt-fcntl.c b/nptl/pt-fcntl.c index 5b55f0b920..7d4a92cea1 100644 --- a/nptl/pt-fcntl.c +++ b/nptl/pt-fcntl.c @@ -38,7 +38,7 @@ __fcntl (int fd, int cmd, ...) va_start (ap, cmd); #ifdef INLINE_SYSCALL - int result = INLINE_SYSCALL (fcntl, 3, fd, cmd, va_arg (ap, long int)); + int result = INLINE_SYSCALL (fcntl64, 3, fd, cmd, va_arg (ap, long int)); #else int result = __libc_fcntl (fd, cmd, va_arg (ap, long int)); #endif |