summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/mmap64.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-05 03:30:27 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-05 03:30:27 +0000
commit12e15afb67a0497865ad6b4ff90e80ba3d2cd9ed (patch)
tree06557c3cf80c14fd21ab6f942ff64a746756ae85 /libc/sysdeps/linux/common/mmap64.c
parent48dae5e2a56438937e20d1dd5cde105dbaf511e1 (diff)
use tabs for whitespace
Diffstat (limited to 'libc/sysdeps/linux/common/mmap64.c')
-rw-r--r--libc/sysdeps/linux/common/mmap64.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/libc/sysdeps/linux/common/mmap64.c b/libc/sysdeps/linux/common/mmap64.c
index 804d6af50..f0380b1ad 100644
--- a/libc/sysdeps/linux/common/mmap64.c
+++ b/libc/sysdeps/linux/common/mmap64.c
@@ -55,13 +55,12 @@
__ptr_t mmap64(__ptr_t addr, size_t len, int prot, int flags, int fd, __off64_t offset)
{
- if (offset != (off_t) offset || (offset + len) != (off_t) (offset + len))
- {
- __set_errno (EINVAL);
- return MAP_FAILED;
- }
+ if (offset != (off_t) offset || (offset + len) != (off_t) (offset + len)) {
+ __set_errno (EINVAL);
+ return MAP_FAILED;
+ }
- return mmap (addr, len, prot, flags, fd, (off_t) offset);
+ return mmap (addr, len, prot, flags, fd, (off_t) offset);
}
#else
@@ -77,11 +76,11 @@ static inline _syscall6(__ptr_t, __syscall_mmap2, __ptr_t, addr,
__ptr_t mmap64(__ptr_t addr, size_t len, int prot, int flags, int fd, __off64_t offset)
{
- if (offset & ((1 << MMAP2_PAGE_SHIFT) - 1)) {
- __set_errno (EINVAL);
- return MAP_FAILED;
- }
- return(__syscall_mmap2(addr, len, prot, flags, fd, (off_t) (offset >> MMAP2_PAGE_SHIFT)));
+ if (offset & ((1 << MMAP2_PAGE_SHIFT) - 1)) {
+ __set_errno (EINVAL);
+ return MAP_FAILED;
+ }
+ return(__syscall_mmap2(addr, len, prot, flags, fd, (off_t) (offset >> MMAP2_PAGE_SHIFT)));
}
#endif