From 67782a0f99c6a792c9d60267d42b21f7335814ba Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Fri, 25 Sep 2020 17:33:12 -0700 Subject: [PATCH] [lldb/bindings] Fix -Wformat after D88123 --- lldb/bindings/python/python-wrapper.swig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/bindings/python/python-wrapper.swig b/lldb/bindings/python/python-wrapper.swig index 9e84b341d1a6..cd326046b421 100644 --- a/lldb/bindings/python/python-wrapper.swig +++ b/lldb/bindings/python/python-wrapper.swig @@ -532,7 +532,8 @@ LLDBSwigPythonCreateScriptedStopHook } else { error.SetErrorStringWithFormat("Class \"%s\" is missing the required " - "handle_stop callback."); + "handle_stop callback.", + python_class_name); result.release(); } }