diff options
author | Rob Austein <sra@hactrn.net> | 2012-10-26 03:08:34 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-10-26 03:08:34 +0000 |
commit | a703cb0c6f7483ddfbd1dd1ced4e6039aca97666 (patch) | |
tree | 381bfad34444f0eace3df2f558ca74fc47028975 | |
parent | 352e7b86cff4df11423871333b51b6c730dd9cbf (diff) |
Warnings dependent on word size: same OS and compiler version, warning
shows up on 64-bit CPU, but not on 32-bit CPU. Fun!
svn path=/branches/tk274/; revision=4792
-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); |