Commit 919603b2 authored by Tim Peters's avatar Tim Peters

Squash compiler wng about signed-vs-unsigned mismatch.

parent 66860f6d
......@@ -328,7 +328,7 @@ fp_readl(char *s, int size, struct tok_state *tok)
if (utf8 == NULL) return error_ret(tok);
else {
const char* str = PyString_AsString(utf8);
assert(strlen(str) < size); /* XXX */
assert(strlen(str) < (size_t)size); /* XXX */
strcpy(s, str);
Py_DECREF(utf8);
if (s[0] == '\0') return NULL; /* EOF */
......
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