Commit 19f6211e authored by Guido van Rossum's avatar Guido van Rossum

Trent Mick: use size_t instead of int where appropriate (in strxfrm(),

to hold strlen() outcome).
parent 610d4dd3
......@@ -281,7 +281,7 @@ PyLocale_strxfrm(self,args)
PyObject* args;
{
char *s,*buf;
int n1,n2;
size_t n1,n2;
PyObject *result;
if(!PyArg_ParseTuple(args,"s:strxfrm",&s))
return NULL;
......
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