summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-21 18:20:10 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-21 18:20:10 (GMT)
commit076d1e0c0b1858a9086c63c237cbe13691231b0f (patch)
tree72925912b97695b66abc9e57ff048465697cf812 /Objects/fileobject.c
parent87557cd72a75ee3d7e8c6a53ee01bab0bc6ec73a (diff)
downloadcpython-076d1e0c0b1858a9086c63c237cbe13691231b0f.zip
cpython-076d1e0c0b1858a9086c63c237cbe13691231b0f.tar.gz
cpython-076d1e0c0b1858a9086c63c237cbe13691231b0f.tar.bz2
Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r--Objects/fileobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index 71ba01b..5249f1c 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -922,7 +922,7 @@ file_readinto(PyFileObject *f, PyObject *args)
ndone += nnow;
ntodo -= nnow;
}
- return PyInt_FromLong((long)ndone);
+ return PyInt_FromSsize_t(ndone);
}
/**************************************************************************