diff options
author | Michael Sartain <mikesart@valvesoftware.com> | 2013-07-30 16:44:36 +0000 |
---|---|---|
committer | Michael Sartain <mikesart@valvesoftware.com> | 2013-07-30 16:44:36 +0000 |
commit | 0769b2b1f35123482ef67abf9f926bb75504906a (patch) | |
tree | 8e3bdfb6bcdc60991c4c2cde65691d6d88c842f2 /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | 788d126ca10beeb32d46a7327e71053764752374 (diff) | |
download | bcm5719-llvm-0769b2b1f35123482ef67abf9f926bb75504906a.tar.gz bcm5719-llvm-0769b2b1f35123482ef67abf9f926bb75504906a.zip |
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
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |