diff options
author | Stephane Sezer <sas@cd80.net> | 2015-08-20 20:43:29 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2015-08-20 20:43:29 +0000 |
commit | 03fc3f765771f915e30145fdc5735de5c1566fe3 (patch) | |
tree | ad2483991aeba3a9f39b41f40d4805a522c33b3a /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 7a4062eaf901e076761dab8574462f39c7061441 (diff) | |
download | bcm5719-llvm-03fc3f765771f915e30145fdc5735de5c1566fe3.tar.gz bcm5719-llvm-03fc3f765771f915e30145fdc5735de5c1566fe3.zip |
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
llvm-svn: 245608
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 798aa4b6a27..4f4eef80a3c 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -4615,7 +4615,7 @@ ProcessGDBRemote::GetLoadedModuleList (GDBLoadedModuleInfoList & list) 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 (GDBLoadedModuleInfoList & list) 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); |