]> granicus.if.org Git - python/commit
Fix "warning: comparison between signed and unsigned integer expressions"
authorGregory P. Smith <greg@krypto.org>
Tue, 30 Sep 2014 07:33:24 +0000 (00:33 -0700)
committerGregory P. Smith <greg@krypto.org>
Tue, 30 Sep 2014 07:33:24 +0000 (00:33 -0700)
commit8486f9b134e0a25a3c64405223e0ba96192e02d9
tree33c8a0fa2fa7e2c37ab31d3a394e0f8d9a293c06
parentfd97a6fb2d501f0ecb104513b5c0c1707dd6f87e
Fix "warning: comparison between signed and unsigned integer expressions"
-Wsign-compare warnings in unicodeobject.c.  These were all a result
of sizeof() being unsigned and being compared to a Py_ssize_t.
Not actual problems.
Objects/unicodeobject.c