Fix 32-bit correctness error.

This commit is contained in:
Marshall T. Vandegrift 2008-12-16 17:58:20 -05:00
parent 0d7a9d95d7
commit c82d2d5d13

View File

@ -175,7 +175,7 @@ mark_frame(void *context, uint32_t uncomp, uint32_t comp)
PyObject *rtable = self->rtable;
PyObject *entry = NULL;
entry = Py_BuildValue("(LL)", uncomp, comp);
entry = Py_BuildValue("(II)", uncomp, comp);
if (entry) {
PyList_Append(rtable, entry);
Py_DECREF(entry);