Changeset 108

Show
Ignore:
Timestamp:
05/08/07 16:25:03 (2 years ago)
Author:
jmtulloss
Message:

test commit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/cwiidpy/cwiidmodule.c

    r107 r108  
    351351        uint32_t offset; 
    352352        uint32_t length; 
    353         void * buf; 
     353        void *buf; 
    354354 
    355355    PyArg_UnpackTuple(args, "read", 3, 3, &pyflags,&pyoffset,&pylength); 
     
    370370        cwiid_read(self->wiimote,flags,offset,length,buf); 
    371371        pyRetBuf = PyBuffer_FromMemory((char*)buf, length); 
    372         free(buf); 
    373372 
    374373        Py_XINCREF(pyRetBuf);