diff options
author | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-07-08 15:30:17 +0000 |
---|---|---|
committer | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-07-08 15:30:17 +0000 |
commit | 801407144050d86fb22364eb6b8f11873ea7bc1f (patch) | |
tree | daea175076476951c138edd2b9b42f6412f0966b /src | |
parent | Remove some duplicate endianness code. (diff) | |
download | breakpad-801407144050d86fb22364eb6b8f11873ea7bc1f.tar.xz |
Fix a couple of tiny things for GCC pedantry
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@622 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r-- | src/common/dwarf/dwarf2enums.h | 2 | ||||
-rw-r--r-- | src/common/dwarf_cu_to_module.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/dwarf/dwarf2enums.h b/src/common/dwarf/dwarf2enums.h index 066189e5..832a17ca 100644 --- a/src/common/dwarf/dwarf2enums.h +++ b/src/common/dwarf/dwarf2enums.h @@ -529,7 +529,7 @@ enum DwarfInline { DW_INL_not_inlined =0x0, DW_INL_inlined =0x1, DW_INL_declared_not_inlined =0x2, - DW_INL_declared_inlined =0x3, + DW_INL_declared_inlined =0x3 }; // Call Frame Info instructions. diff --git a/src/common/dwarf_cu_to_module.cc b/src/common/dwarf_cu_to_module.cc index 4792d900..85d1d8c4 100644 --- a/src/common/dwarf_cu_to_module.cc +++ b/src/common/dwarf_cu_to_module.cc @@ -443,7 +443,7 @@ dwarf2reader::DIEHandler *DwarfCUToModule::NamedScopeHandler::FindChildHandler( default: return NULL; } -}; +} void DwarfCUToModule::WarningReporter::CUHeading() { if (printed_cu_header_) |