[Lldb-commits] [PATCH] D12203: Fix some format strings in ProcessGDBRemote.cpp.

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


This revision was automatically updated to reflect the committed changes.
Closed by commit rL245608: Fix some format strings in ProcessGDBRemote.cpp. (authored by sas).

Changed prior to commit:
  http://reviews.llvm.org/D12203?vs=32719&id=32737#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D12203

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

Index: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
===================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -4615,7 +4615,7 @@
                 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 @@
                 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);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12203.32737.patch
Type: text/x-patch
Size: 1074 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150820/afa41798/attachment.bin>


More information about the lldb-commits mailing list