about summary refs log tree commit diff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-07-06 23:33:20 +0000
committerUlrich Drepper <drepper@redhat.com>2000-07-06 23:33:20 +0000
commitcf90163d418e0cf83166e85735ba81a3cd28ed32 (patch)
tree21c0c406b7d2a8d379366b7f9026782f24ede334 /sysdeps/unix
parenta85d5c806068dc0d6332390c7a87e60ccd99be9a (diff)
downloadglibc-cf90163d418e0cf83166e85735ba81a3cd28ed32.tar.gz
glibc-cf90163d418e0cf83166e85735ba81a3cd28ed32.tar.xz
glibc-cf90163d418e0cf83166e85735ba81a3cd28ed32.zip
Regenerated: autoconf configure.in
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/sparc/sparc32/mmap64.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/mmap64.c b/sysdeps/unix/sysv/linux/sparc/sparc32/mmap64.c
index 6a77e28a8a..1218f9dae0 100644
--- a/sysdeps/unix/sysv/linux/sparc/sparc32/mmap64.c
+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/mmap64.c
@@ -48,8 +48,9 @@ __mmap64 (__ptr_t addr, size_t len, int prot, int flags, int fd, off64_t offset)
       int saved_errno = errno;
 #endif
       /* This will be always 12, no matter what page size is.  */
-      __ptr_t result = INLINE_SYSCALL (mmap2, 6, addr, len, prot, flags,
-				       fd, (off_t) (offset >> 12));
+      __ptr_t result =
+	(__ptr_t) INLINE_SYSCALL (mmap2, 6, addr, len, prot, flags,
+				  fd, (off_t) (offset >> 12));
 
 #ifndef __ASSUME_MMAP2_SYSCALL
       if (result != (__ptr_t) -1 || errno != ENOSYS)