From 8794e39888a71c5dff5161d928229b872db5ffce Mon Sep 17 00:00:00 2001 From: "Liu.andrew.x@gmail.com" Date: Thu, 13 Aug 2015 20:13:55 +0000 Subject: Fix format specifier in proc maps to support 32-bit architectures. R=ivanpe@chromium.org Review URL: https://codereview.chromium.org/1288323003 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1486 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/google_breakpad/processor/proc_maps_linux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/google_breakpad/processor') 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; -- cgit v1.2.1