diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-05-04 19:52:18 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-05-04 19:52:18 +0000 |
commit | 663b7904e4d55b9d5ffa77ab37f74b8e9eb03db8 (patch) | |
tree | 1b03ddeb7ad502319b19ab8529f7030a9a15ddf1 | |
parent | Issue 160 - Reviewer Chris Rogers (diff) | |
download | breakpad-663b7904e4d55b9d5ffa77ab37f74b8e9eb03db8.tar.xz |
oops, committed accidentally
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@157 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | src/processor/minidump_stackwalk.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/processor/minidump_stackwalk.cc b/src/processor/minidump_stackwalk.cc index 3ce8360a..d7a92081 100644 --- a/src/processor/minidump_stackwalk.cc +++ b/src/processor/minidump_stackwalk.cc @@ -255,8 +255,7 @@ static void PrintModules(const CodeModules *modules) { // PrintModulesMachineReadable outputs a list of loaded modules, // one per line, in the following machine-readable pipe-delimited // text format: -// Module|{Module Filename}|{Version}|{Debug Filename}|{Identifier}| -// {Base Address}|{Max Address}|{Main} +// Module|{Module Filename}|{Version}|{Base Address}|{Max Address}|{Main} static void PrintModulesMachineReadable(const CodeModules *modules) { if (!modules) return; @@ -273,12 +272,10 @@ static void PrintModulesMachineReadable(const CodeModules *modules) { ++module_sequence) { const CodeModule *module = modules->GetModuleAtSequence(module_sequence); u_int64_t base_address = module->base_address(); - printf("Module%c%s%c%s%c%s%c%s%c0x%08llx%c0x%08llx%c%d\n", + printf("Module%c%s%c%s%c0x%08llx%c0x%08llx%c%d\n", kOutputSeparator, StripSeparator(PathnameStripper::File(module->code_file())).c_str(), kOutputSeparator, StripSeparator(module->version()).c_str(), - kOutputSeparator, StripSeparator(module->debug_file()).c_str(), - kOutputSeparator, StripSeparator(module->code_identifier()).c_str(), kOutputSeparator, base_address, kOutputSeparator, base_address + module->size() - 1, kOutputSeparator, base_address == main_address ? 1 : 0); |