diff options
-rw-r--r-- | Objects/floatobject.c | 2 | ||||
-rw-r--r-- | Python/codecs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index bbf56c6d75..774d2ead6a 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 */ diff --git a/Python/codecs.c b/Python/codecs.c index 7b31003f33..4b8d983935 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -804,7 +804,7 @@ static int _PyCodecRegistry_Init(void) PyInterpreterState *interp = PyThreadState_GET()->interp; PyObject *mod; - int i; + unsigned i; if (interp->codec_search_path != NULL) return 0; |