aboutsummaryrefslogtreecommitdiff
path: root/src/client/minidump_file_writer.h
diff options
context:
space:
mode:
authorwaylonis <waylonis@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-05-19 00:41:39 +0000
committerwaylonis <waylonis@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-05-19 00:41:39 +0000
commit32d40647362a014f2184a6f4d2c8e0453eb8f655 (patch)
tree07834ee053dabf0e14db5b481224a2ee2a2a609e /src/client/minidump_file_writer.h
parentAdd logging to minidump processor (#82). First part: logging infrastructure (diff)
downloadbreakpad-32d40647362a014f2184a6f4d2c8e0453eb8f655.tar.xz
- Add const keyword / casting to supress more stringient compiler warnings
- Move DynamicImage::Print() from dynamic_images.h to dynamic_images.cc git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@170 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/minidump_file_writer.h')
-rw-r--r--src/client/minidump_file_writer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/minidump_file_writer.h b/src/client/minidump_file_writer.h
index 9747c7dc..39fc90b8 100644
--- a/src/client/minidump_file_writer.h
+++ b/src/client/minidump_file_writer.h
@@ -228,7 +228,7 @@ class TypedMDRVA : public UntypedMDRVA {
// Copy |size| bytes starting at |str| to |index|
// Must have been allocated using AllocateObjectAndArray().
// Return true on success, or false on failure
- bool CopyIndexAfterObject(unsigned int index, void *src, size_t size);
+ bool CopyIndexAfterObject(unsigned int index, const void *src, size_t size);
// Write data_
bool Flush();