fixed typo in pyargs

This commit is contained in:
Kenny Ostrom 2014-08-30 13:07:26 -05:00
parent b701edd28e
commit e067a86c4d

View File

@ -444,7 +444,7 @@ PyImaging_LibTiffDecoderNew(PyObject* self, PyObject* args)
int fp;
int ifdoffset;
if (! PyArg_ParseTuple(args, "sssi ", &mode, &rawmode, &compname, &fp, &ifdoffset))
if (! PyArg_ParseTuple(args, "sssii", &mode, &rawmode, &compname, &fp, &ifdoffset))
return NULL;
TRACE(("new tiff decoder %s\n", compname));