diff options
Diffstat (limited to 'rpkid/ext/POW.c')
-rw-r--r-- | rpkid/ext/POW.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpkid/ext/POW.c b/rpkid/ext/POW.c index 3680a0c0..3e74a56a 100644 --- a/rpkid/ext/POW.c +++ b/rpkid/ext/POW.c @@ -6125,7 +6125,8 @@ manifest_object_add_files(manifest_object *self, PyObject *args) FileAndHash *fah = NULL; char *file = NULL; char *hash = NULL; - int filelen, hashlen, ok = 0; + Py_ssize_t filelen, hashlen; + int ok = 0; ENTERING(manifest_object_add_files); |