aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorTim Hammerquist <penryu@apple.com>2017-06-29 23:33:40 +0000
committerTim Hammerquist <penryu@apple.com>2017-06-29 23:33:40 +0000
commit0a94072e4d577397a989aa056c36f70f64fbba24 (patch)
tree76683fb617440a5e076db9cd6ec12cc5df3f88b9 /lldb/source/Commands/CommandObjectThread.cpp
parent6d441bf05f5594902077d32e82aacb9e9ab16c88 (diff)
downloadllvm-0a94072e4d577397a989aa056c36f70f64fbba24.zip
llvm-0a94072e4d577397a989aa056c36f70f64fbba24.tar.gz
llvm-0a94072e4d577397a989aa056c36f70f64fbba24.tar.bz2
Fix some type-based warnings
llvm-svn: 306765
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index cfd8fcb..687187b 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -209,7 +209,7 @@ protected:
Process *process = m_exe_ctx.GetProcessPtr();
Thread *thread = process->GetThreadList().FindThreadByID(tid).get();
if (thread == nullptr) {
- result.AppendErrorWithFormat("Failed to process thread# %lu.\n", tid);
+ result.AppendErrorWithFormat("Failed to process thread# %llu.\n", tid);
result.SetStatus(eReturnStatusFailed);
return false;
}