Commit ef4b7ed4 authored by Tim Peters's avatar Tim Peters

Squash compiler wng about signed-vs-unsigned mismatch.

parent e3d1df06
......@@ -647,7 +647,7 @@ Reader_iternext(ReaderObj *self)
Py_DECREF(lineobj);
return NULL;
}
if (strlen(line) < PyString_GET_SIZE(lineobj)) {
if (strlen(line) < (size_t)PyString_GET_SIZE(lineobj)) {
self->had_parse_error = 1;
Py_DECREF(lineobj);
return PyErr_Format(error_obj,
......
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