diff options
author | Shu-Chun Weng <scw@google.com> | 2019-10-26 10:36:50 +0200 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-10-26 10:38:06 +0200 |
commit | 5e307808557f4786c6438c9cfd67784073c5a3b7 (patch) | |
tree | a156aa10b541d33e192e619bfa40c00d00ee60b0 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
parent | a6a37e820cf638dcecb2e4b0f50ca01f5db3f72e (diff) | |
download | bcm5719-llvm-5e307808557f4786c6438c9cfd67784073c5a3b7.tar.gz bcm5719-llvm-5e307808557f4786c6438c9cfd67784073c5a3b7.zip |
Correct size_t format specifier
Differential Revision: https://reviews.llvm.org/D69455
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index 0c48ac498ec..15c3e241fce 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -1257,7 +1257,7 @@ Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallbackFunction( oneliner += "(frame, bp_loc, internal_dict)"; } else { error.SetErrorStringWithFormat("expected 3 or 4 argument " - "function, %s has %d", + "function, %s has %zu", function_name, num_args); return error; } |