diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:55:58 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:55:58 (GMT) |
commit | 739a8f86d6b4df7a36ec875660095ff16aa560d7 (patch) | |
tree | 1c3bfb510681c95759c3f460cdbe10b7899cdd3b /Objects | |
parent | 4ded4b52c4121ef35801c766480961e1966f91a4 (diff) | |
download | cpython-739a8f86d6b4df7a36ec875660095ff16aa560d7.zip cpython-739a8f86d6b4df7a36ec875660095ff16aa560d7.tar.gz cpython-739a8f86d6b4df7a36ec875660095ff16aa560d7.tar.bz2 |
Fix a couple of signed/unsigned comparison warnings
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/floatobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index bbf56c6..774d2ea 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -884,7 +884,7 @@ PyFloat_Fini(void) { PyFloatObject *p; PyFloatBlock *list, *next; - int i; + unsigned i; int bc, bf; /* block count, number of freed blocks */ int frem, fsum; /* remaining unfreed floats per block, total */ |