[Lldb-commits] [lldb] r192897 - Correct log message typo: ended ad -> ended at
Ed Maste
emaste at freebsd.org
Thu Oct 17 07:03:08 PDT 2013
Author: emaste
Date: Thu Oct 17 09:03:07 2013
New Revision: 192897
URL: http://llvm.org/viewvc/llvm-project?rev=192897&view=rev
Log:
Correct log message typo: ended ad -> ended at
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp?rev=192897&r1=192896&r2=192897&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp Thu Oct 17 09:03:07 2013
@@ -459,7 +459,7 @@ DWARFDebugLine::ParsePrologue(const Data
if (*offset_ptr != end_prologue_offset)
{
Host::SystemLog (Host::eSystemLogWarning,
- "warning: parsing line table prologue at 0x%8.8" PRIx64 " should have ended at 0x%8.8" PRIx64 " but it ended ad 0x%8.8" PRIx64 "\n",
+ "warning: parsing line table prologue at 0x%8.8" PRIx64 " should have ended at 0x%8.8" PRIx64 " but it ended at 0x%8.8" PRIx64 "\n",
prologue_offset,
end_prologue_offset,
*offset_ptr);
@@ -554,7 +554,7 @@ DWARFDebugLine::ParseSupportFiles (const
if (offset != end_prologue_offset)
{
Host::SystemLog (Host::eSystemLogError,
- "warning: parsing line table prologue at 0x%8.8x should have ended at 0x%8.8x but it ended ad 0x%8.8" PRIx64 "\n",
+ "warning: parsing line table prologue at 0x%8.8x should have ended at 0x%8.8x but it ended at 0x%8.8" PRIx64 "\n",
stmt_list,
end_prologue_offset,
offset);
More information about the lldb-commits
mailing list