Skip to content

Commit

Permalink
Fix segfault on Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Oct 17, 2014
1 parent 339537d commit 6e19dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_path_wrapper.cpp
Expand Up @@ -242,7 +242,7 @@ static PyObject *Py_update_path_extents(PyObject *self, PyObject *args, PyObject
outminpos(1) = e.ym;

return Py_BuildValue(
"NNO", outextents.pyobj(), outminpos.pyobj(), changed ? Py_True : Py_False);
"NNi", outextents.pyobj(), outminpos.pyobj(), changed);
}

const char *Py_get_path_collection_extents__doc__ = "get_path_collection_extents(";
Expand Down

0 comments on commit 6e19dac

Please sign in to comment.