mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-23 05:44:03 +02:00
Fix 32-bit correctness error.
This commit is contained in:
parent
0d7a9d95d7
commit
c82d2d5d13
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue