aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux/minidump_writer/minidump_writer.cc
diff options
context:
space:
mode:
authorjessicag.feedback@gmail.com <jessicag.feedback@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-03-03 00:42:11 +0000
committerjessicag.feedback@gmail.com <jessicag.feedback@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-03-03 00:42:11 +0000
commit68b256aed31bbd6d01caf3be7de7911d3d02f5eb (patch)
tree1ab65a13de8b1bb19a5f7656be3268c9c0855540 /src/client/linux/minidump_writer/minidump_writer.cc
parentFix compiler warning. (diff)
downloadbreakpad-68b256aed31bbd6d01caf3be7de7911d3d02f5eb.tar.xz
Updating to ints from unsigned ints so -1 will be an acceptable value.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@777 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/linux/minidump_writer/minidump_writer.cc')
-rw-r--r--src/client/linux/minidump_writer/minidump_writer.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/linux/minidump_writer/minidump_writer.cc b/src/client/linux/minidump_writer/minidump_writer.cc
index 3eb90953..10084ac4 100644
--- a/src/client/linux/minidump_writer/minidump_writer.cc
+++ b/src/client/linux/minidump_writer/minidump_writer.cc
@@ -820,10 +820,9 @@ class MinidumpWriter {
// Fill the MDRawModule |mod| with information about the provided
// |mapping|. If |identifier| is non-NULL, use it instead of calculating
- // a file ID from the mapping. |mapping_id| can be -1 if this mapping
- // is not from the LinuxDumper.
+ // a file ID from the mapping. |mapping_id| can be -1.
bool FillRawModule(const MappingInfo& mapping,
- unsigned int mapping_id,
+ int mapping_id,
MDRawModule& mod,
const u_int8_t* identifier) {
my_memset(&mod, 0, MD_MODULE_SIZE);