diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:55:58 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:55:58 +0000 |
commit | a27d5dfaedc69b99dc7ef3a44e7e8f8a34fa0b21 (patch) | |
tree | 230f1d1750ee27502dfb5067d6a3a7cb735e90b7 /Python/codecs.c | |
parent | bf7876c7b789f20004ebc039f4c5d5061e217b2b (diff) | |
download | cpython-a27d5dfaedc69b99dc7ef3a44e7e8f8a34fa0b21.tar.gz |
Fix a couple of signed/unsigned comparison warnings
Diffstat (limited to 'Python/codecs.c')
-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 7b31003f33..4b8d983935 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; |