aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-02-17 16:09:10 +0000
committerPavel Labath <labath@google.com>2017-02-17 16:09:10 +0000
commit28096200a8f834373037234a756c144f876a3342 (patch)
treee3563cd661886bea2f4c3d8f2fbf0ac07c400336 /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
parentf68e183f912a5309740f439eb41350d30f6a2370 (diff)
downloadllvm-28096200a8f834373037234a756c144f876a3342.tar.gz
llvm-28096200a8f834373037234a756c144f876a3342.tar.bz2
llvm-28096200a8f834373037234a756c144f876a3342.zip
NPL: Fix an incorrect logging formatv call
llvm-svn: 295457
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp')
-rw-r--r--lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
index f8cc12157f04..c3b6f4c352d0 100644
--- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
+++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
@@ -2412,8 +2412,8 @@ Error NativeProcessLinux::PtraceWrapper(int req, lldb::pid_t pid, void *addr,
if (result)
*result = ret;
- LLDB_LOG(log, "ptrace({0}, {1}, {2}, {3}, {4}, {5})={6:x}", req, pid, addr,
- data, data_size, ret);
+ LLDB_LOG(log, "ptrace({0}, {1}, {2}, {3}, {4})={5:x}", req, pid, addr, data,
+ data_size, ret);
PtraceDisplayBytes(req, data, data_size);