Commit 33831137 authored by Guido van Rossum's avatar Guido van Rossum

Change the loop index in normalizestring() to size_t too, to avoid a

warning on Windows.
parent a22a0b3e
......@@ -82,7 +82,7 @@ int PyCodec_Register(PyObject *search_function)
static
PyObject *normalizestring(const char *string)
{
register int i;
register size_t i;
size_t len = strlen(string);
char *p;
PyObject *v;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment