[Lldb-commits] [lldb] r215681 - Fix typo in error message.
Eric Christopher
echristo at gmail.com
Thu Aug 14 16:04:29 PDT 2014
Author: echristo
Date: Thu Aug 14 18:04:28 2014
New Revision: 215681
URL: http://llvm.org/viewvc/llvm-project?rev=215681&view=rev
Log:
Fix typo in error message.
Modified:
lldb/trunk/source/Expression/DWARFExpression.cpp
Modified: lldb/trunk/source/Expression/DWARFExpression.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/DWARFExpression.cpp?rev=215681&r1=215680&r2=215681&view=diff
==============================================================================
--- lldb/trunk/source/Expression/DWARFExpression.cpp (original)
+++ lldb/trunk/source/Expression/DWARFExpression.cpp Thu Aug 14 18:04:28 2014
@@ -2692,7 +2692,7 @@ DWARFExpression::Evaluate
default:
if (error_ptr)
- error_ptr->SetErrorStringWithFormat ("unhandled value typpe for DW_OP_piece(%" PRIu64 ")", piece_byte_size);
+ error_ptr->SetErrorStringWithFormat ("unhandled value type for DW_OP_piece(%" PRIu64 ")", piece_byte_size);
return false;
}
More information about the lldb-commits
mailing list