Skip to content

Commit 8af6223

Browse files
authored
Update pybullet.c
1 parent cfd3584 commit 8af6223

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/pybullet/pybullet.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,8 @@ static PyObject* pybullet_startStateLogging(PyObject* self, PyObject* args, PyOb
26262626
if (seq)
26272627
{
26282628
int len = PySequence_Size(objectUniqueIdsObj);
2629-
for (int i=0;i<len;i++)
2629+
int i;
2630+
for ( i=0;i<len;i++)
26302631
{
26312632
int objectUid = pybullet_internalGetFloatFromSequence(seq, i);
26322633
b3StateLoggingAddLoggingObjectUniqueId(commandHandle,objectUid);

0 commit comments

Comments
 (0)