diff options
author | Enrico Granata <egranata@apple.com> | 2012-08-24 01:34:39 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-08-24 01:34:39 +0000 |
commit | 4300fab2d4ac7d04035779b509b8e38219386096 (patch) | |
tree | 60fb774c75945cc985ab4bd8e96591e14f639d3a /lldb/scripts | |
parent | bb69a27dbc86667a3d1dc3389a2c2bd086cffb2c (diff) | |
download | bcm5719-llvm-4300fab2d4ac7d04035779b509b8e38219386096.tar.gz bcm5719-llvm-4300fab2d4ac7d04035779b509b8e38219386096.zip |
Fixing a bunch of issues with the OS plugin code
llvm-svn: 162527
Diffstat (limited to 'lldb/scripts')
-rw-r--r-- | lldb/scripts/Python/python-wrapper.swig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/python-wrapper.swig b/lldb/scripts/Python/python-wrapper.swig index a2c7a48f14d..1acbe277d3d 100644 --- a/lldb/scripts/Python/python-wrapper.swig +++ b/lldb/scripts/Python/python-wrapper.swig @@ -779,7 +779,7 @@ LLDBSWIGPythonCreateOSPlugin if (PyCallable_Check (pfunc)) { - PyObject *argList = Py_BuildValue("S", SBProc_PyObj); + PyObject *argList = Py_BuildValue("(O)", SBProc_PyObj); if (PyErr_Occurred ()) { |