[Lldb-commits] [lldb] r245608 - Fix some format strings in ProcessGDBRemote.cpp.

Stephane Sezer via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 20 13:43:29 PDT 2015


Author: sas
Date: Thu Aug 20 15:43:29 2015
New Revision: 245608

URL: http://llvm.org/viewvc/llvm-project?rev=245608&view=rev
Log:
Fix some format strings in ProcessGDBRemote.cpp.

Summary: Size specifier should come after `%` not before.

Reviewers: clayborg, ADodds

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D12203

Modified:
    lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=245608&r1=245607&r2=245608&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Thu Aug 20 15:43:29 2015
@@ -4615,7 +4615,7 @@ ProcessGDBRemote::GetLoadedModuleList (G
                 module.get_base (base);
                 module.get_dynamic (ld);
 
-                log->Printf ("found (link_map:0x08%" PRIx64 ", base:0x08%" PRIx64 ", ld:0x08%" PRIx64 ", name:'%s')", lm, base, ld, name.c_str());
+                log->Printf ("found (link_map:0x%08" PRIx64 ", base:0x%08" PRIx64 ", ld:0x%08" PRIx64 ", name:'%s')", lm, base, ld, name.c_str());
             }
 
             list.add (module);
@@ -4665,7 +4665,7 @@ ProcessGDBRemote::GetLoadedModuleList (G
                 module.get_name (name);
                 module.get_base (base);
 
-                log->Printf ("found (base:0x%" PRIx64 ", name:'%s')", base, name.c_str());
+                log->Printf ("found (base:0x%08" PRIx64 ", name:'%s')", base, name.c_str());
             }
 
             list.add (module);




More information about the lldb-commits mailing list