From 0769b2b1f35123482ef67abf9f926bb75504906a Mon Sep 17 00:00:00 2001 From: Michael Sartain Date: Tue, 30 Jul 2013 16:44:36 +0000 Subject: Add format specifiers to various format ids so we can print thread ids in decimal on Linux and FreeBSD. CC: emaste Differential Revision: http://llvm-reviews.chandlerc.com/D1234 llvm-svn: 187425 --- lldb/source/Interpreter/ScriptInterpreterPython.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp') diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 68414972608..9d9b8d93fb4 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -2685,7 +2685,7 @@ ScriptInterpreterPython::RunScriptFormatKeyword (const char* impl_function, error.SetErrorString("no function to execute"); return false; } - if (!g_swig_run_script_keyword_thread) + if (!g_swig_run_script_keyword_target) { error.SetErrorString("internal helper function missing"); return false; @@ -2717,7 +2717,7 @@ ScriptInterpreterPython::RunScriptFormatKeyword (const char* impl_function, error.SetErrorString("no function to execute"); return false; } - if (!g_swig_run_script_keyword_thread) + if (!g_swig_run_script_keyword_frame) { error.SetErrorString("internal helper function missing"); return false; -- cgit v1.2.3