Kaydet (Commit) 9544fc50 authored tarafından Tim Peters's avatar Tim Peters

Squash compiler wng about mixing signed and unsigned in comparison.

üst faa7f116
......@@ -585,7 +585,8 @@ conv_content_model(XML_Content * const model,
int i;
if (children != NULL) {
for (i = 0; i < model->numchildren; ++i) {
assert(model->numchildren < INT_MAX);
for (i = 0; i < (int)model->numchildren; ++i) {
PyObject *child = conv_content_model(&model->children[i],
conv_string);
if (child == 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