Skip to content

Commit ef4b7ed

Browse files
committed
Squash compiler wng about signed-vs-unsigned mismatch.
1 parent e3d1df0 commit ef4b7ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_csv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ Reader_iternext(ReaderObj *self)
647647
Py_DECREF(lineobj);
648648
return NULL;
649649
}
650-
if (strlen(line) < PyString_GET_SIZE(lineobj)) {
650+
if (strlen(line) < (size_t)PyString_GET_SIZE(lineobj)) {
651651
self->had_parse_error = 1;
652652
Py_DECREF(lineobj);
653653
return PyErr_Format(error_obj,

0 commit comments

Comments
 (0)