diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-07 19:39:01 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-07 19:39:01 +0000 |
commit | 083db23e3179f3217710b66a93878aeb9375984c (patch) | |
tree | 79ee0eecf03571cd8e30dcf27c1f9c8d29918f80 /breakpad | |
parent | d5f55d007b9053d7ab4137c416f4213ab17ec51a (diff) | |
download | chromium_src-083db23e3179f3217710b66a93878aeb9375984c.zip chromium_src-083db23e3179f3217710b66a93878aeb9375984c.tar.gz chromium_src-083db23e3179f3217710b66a93878aeb9375984c.tar.bz2 |
Fix breakpad compile on Fedora 11.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/155126
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20064 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/linux/minidump_writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/breakpad/linux/minidump_writer.cc b/breakpad/linux/minidump_writer.cc index 0eb429c..a3aabc9 100644 --- a/breakpad/linux/minidump_writer.cc +++ b/breakpad/linux/minidump_writer.cc @@ -669,7 +669,7 @@ class MinidumpWriter { if (entry->found) goto popline; if (!strncmp(line, entry->info_name, strlen(entry->info_name))) { - char* value = strchr(line, ':'); + const char* value = strchr(line, ':'); if (!value) goto popline; @@ -693,7 +693,7 @@ class MinidumpWriter { // special case for vendor_id if (!strncmp(line, vendor_id_name, vendor_id_name_length)) { - char* value = strchr(line, ':'); + const char* value = strchr(line, ':'); if (!value) goto popline; |