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);


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);
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to