compile fix in pybullet.c

This commit is contained in:
Erwin Coumans
2017-12-28 12:57:49 -08:00
parent 22e23d22d1
commit 29cfac096b

View File

@@ -358,9 +358,10 @@ static PyObject* pybullet_connectPhysicsServer(PyObject* self, PyObject* args, P
char** argv=0;
if (options)
{
int i;
argv = urdfStrSplit(options, " ");
argc = urdfStrArrayLen(argv);
for (int i = 0; i < argc; i++)
for (i = 0; i < argc; i++)
{
printf("argv[%d]=%s\n", i, argv[i]);
}