You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.1 KiB
21 lines
1.1 KiB
--- absl/base/internal/direct_mmap.h
|
|
+++ absl/base/internal/direct_mmap.h
|
|
@@ -72,7 +72,7 @@ namespace base_internal {
|
|
// Platform specific logic extracted from
|
|
// https://chromium.googlesource.com/linux-syscall-support/+/master/linux_syscall_support.h
|
|
inline void* DirectMmap(void* start, size_t length, int prot, int flags, int fd,
|
|
- off64_t offset) noexcept {
|
|
+ off_t offset) noexcept {
|
|
#if defined(__i386__) || defined(__ARM_ARCH_3__) || defined(__ARM_EABI__) || \
|
|
defined(__m68k__) || defined(__sh__) || \
|
|
(defined(__hppa__) && !defined(__LP64__)) || \
|
|
@@ -102,7 +102,7 @@ inline void* DirectMmap(void* start, size_t length, int prot, int flags, int fd,
|
|
#else
|
|
return reinterpret_cast<void*>(
|
|
syscall(SYS_mmap2, start, length, prot, flags, fd,
|
|
- static_cast<off_t>(offset / pagesize)));
|
|
+ static_cast<unsigned long>(offset / pagesize))); // NOLINT
|
|
#endif
|
|
#elif defined(__s390x__)
|
|
// On s390x, mmap() arguments are passed in memory.
|