[Lldb-commits] [lldb] 2f95c50 - Fix use of wrong printf format specifier for size_t argument.
Richard Smith via lldb-commits
lldb-commits at lists.llvm.org
Tue Sep 29 16:02:17 PDT 2020
Author: Richard Smith
Date: 2020-09-29T16:02:08-07:00
New Revision: 2f95c50a8b713970c5134dabc246270111a48c6d
URL: https://github.com/llvm/llvm-project/commit/2f95c50a8b713970c5134dabc246270111a48c6d
DIFF: https://github.com/llvm/llvm-project/commit/2f95c50a8b713970c5134dabc246270111a48c6d.diff
LOG: Fix use of wrong printf format specifier for size_t argument.
This causes a build break under -Werror=format.
Added:
Modified:
lldb/bindings/python/python-wrapper.swig
Removed:
################################################################################
diff --git a/lldb/bindings/python/python-wrapper.swig b/lldb/bindings/python/python-wrapper.swig
index c00deba6073b..443ddfb8dd20 100644
--- a/lldb/bindings/python/python-wrapper.swig
+++ b/lldb/bindings/python/python-wrapper.swig
@@ -521,7 +521,7 @@ LLDBSwigPythonCreateScriptedStopHook
size_t num_args = (*args_info).max_positional_args;
if (num_args != 2) {
error.SetErrorStringWithFormat("Wrong number of args for "
- "handle_stop callback, should be 2 (excluding self), got: %d",
+ "handle_stop callback, should be 2 (excluding self), got: %zu",
num_args);
Py_RETURN_NONE;
} else
More information about the lldb-commits
mailing list