[Lldb-commits] [lldb] r271716 - Fix a printf warning.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 3 12:45:05 PDT 2016


Author: gclayton
Date: Fri Jun  3 14:45:05 2016
New Revision: 271716

URL: http://llvm.org/viewvc/llvm-project?rev=271716&view=rev
Log:
Fix a printf warning.


Modified:
    lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp?rev=271716&r1=271715&r2=271716&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp Fri Jun  3 14:45:05 2016
@@ -1778,8 +1778,7 @@ DWARFASTParserClang::ParseTypeFromDWARF
                                 else
                                 {
                                     module_sp->ReportError ("DWARF DIE at 0x%8.8x was not able to start its definition.\nPlease file a bug and attach the file at the start of this error message",
-                                                            type_die_ref.die_offset,
-                                                            type_name_cstr);
+                                                            type_die_ref.die_offset);
                                 }
                             }
 




More information about the lldb-commits mailing list