Skip to content

Commit

Permalink
p is expecting an int, not a bool
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
  • Loading branch information
ivanpauno committed Oct 30, 2020
1 parent 2950d04 commit 93b4309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rclpy/src/rclpy/_rclpy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1709,8 +1709,8 @@ rclpy_resolve_name(PyObject * Py_UNUSED(self), PyObject * args)
{
PyObject * pynode = NULL;
const char * name = NULL;
bool only_expand = false;
bool is_service = false;
int only_expand = false;
int is_service = false;


if (!PyArg_ParseTuple(args, "Ospp", &pynode, &name, &only_expand, &is_service)) {
Expand Down

0 comments on commit 93b4309

Please sign in to comment.