aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad
diff options
context:
space:
mode:
authorLiu.andrew.x@gmail.com <Liu.andrew.x@gmail.com>2015-08-13 20:13:55 +0000
committerLiu.andrew.x@gmail.com <Liu.andrew.x@gmail.com>2015-08-13 20:13:55 +0000
commit8794e39888a71c5dff5161d928229b872db5ffce (patch)
tree037edbcac18a2b887498efc22a470b565191e44b /src/google_breakpad
parentActually remove removed files (diff)
downloadbreakpad-8794e39888a71c5dff5161d928229b872db5ffce.tar.xz
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
Diffstat (limited to 'src/google_breakpad')
-rw-r--r--src/google_breakpad/processor/proc_maps_linux.h4
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;