diff options
Diffstat (limited to 'src/google_breakpad')
-rw-r--r-- | src/google_breakpad/processor/proc_maps_linux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google_breakpad/processor/proc_maps_linux.h b/src/google_breakpad/processor/proc_maps_linux.h index 22f9f6a4..b8e6eb92 100644 --- a/src/google_breakpad/processor/proc_maps_linux.h +++ b/src/google_breakpad/processor/proc_maps_linux.h @@ -23,8 +23,8 @@ struct MappedMemoryRegion { }; // The address range [start,end) of mapped memory. - uintptr_t start; - uintptr_t end; + uint64_t start; + uint64_t end; // Byte offset into |path| of the range mapped into memory. uint64_t offset; |