diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:55:58 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:55:58 (GMT) |
commit | 739a8f86d6b4df7a36ec875660095ff16aa560d7 (patch) | |
tree | 1c3bfb510681c95759c3f460cdbe10b7899cdd3b /Python | |
parent | 4ded4b52c4121ef35801c766480961e1966f91a4 (diff) | |
download | cpython-739a8f86d6b4df7a36ec875660095ff16aa560d7.zip cpython-739a8f86d6b4df7a36ec875660095ff16aa560d7.tar.gz cpython-739a8f86d6b4df7a36ec875660095ff16aa560d7.tar.bz2 |
Fix a couple of signed/unsigned comparison warnings
Diffstat (limited to 'Python')
-rw-r--r-- | Python/codecs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index 7b31003..4b8d983 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -804,7 +804,7 @@ static int _PyCodecRegistry_Init(void) PyInterpreterState *interp = PyThreadState_GET()->interp; PyObject *mod; - int i; + unsigned i; if (interp->codec_search_path != NULL) return 0; |