Kaydet (Commit) ab906a56 authored tarafından Thomas Heller's avatar Thomas Heller

Cast an Py_ssize_t to int, to avoid a compiler warning.

üst 6ea6e204
......@@ -251,10 +251,10 @@ CField_repr(CFieldObject *self)
if (bits)
result = PyString_FromFormat("<Field type=%s, ofs=%d:%d, bits=%d>",
name, self->offset, size, bits);
name, (int)self->offset, size, bits);
else
result = PyString_FromFormat("<Field type=%s, ofs=%d, size=%d>",
name, self->offset, size);
name, (int)self->offset, size);
return result;
}
......
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