diff --git a/Modules/timemodule.c b/Modules/timemodule.c index faadf1e0fc3..2644e72235e 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -378,9 +378,9 @@ time_strftime(self, args) PyObject *tup; struct tm buf; const char *fmt; - int fmtlen, buflen; + size_t fmtlen, buflen; char *outbuf = 0; - int i; + size_t i; memset((ANY *) &buf, '\0', sizeof(buf));