diff options
| author | Pavel Labath <labath@google.com> | 2017-02-17 16:09:10 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-02-17 16:09:10 +0000 |
| commit | 28096200a8f834373037234a756c144f876a3342 (patch) | |
| tree | e3563cd661886bea2f4c3d8f2fbf0ac07c400336 /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | |
| parent | f68e183f912a5309740f439eb41350d30f6a2370 (diff) | |
| download | llvm-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.cpp | 4 |
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); |
