diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-11 20:35:52 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-11 20:35:52 (GMT) |
commit | 2c5d3cbfb88cf732adcd6c659ce875912ee70ee3 (patch) | |
tree | 0a604738ef43801160e3e418ea5698eefc1869be /Modules/_localemodule.c | |
parent | 3f528f0c1b79f32b1c00348f53f4b5b2007f16c5 (diff) | |
download | cpython-2c5d3cbfb88cf732adcd6c659ce875912ee70ee3.zip cpython-2c5d3cbfb88cf732adcd6c659ce875912ee70ee3.tar.gz cpython-2c5d3cbfb88cf732adcd6c659ce875912ee70ee3.tar.bz2 |
Fix a compiler warning in _locale
Diffstat (limited to 'Modules/_localemodule.c')
-rw-r--r-- | Modules/_localemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 72450de..9bba1b3 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -292,7 +292,7 @@ PyLocale_strxfrm(PyObject* self, PyObject* args) goto exit; } n2 = wcsxfrm(buf, s, n1); - if (n2 >= n1) { + if (n2 >= (size_t)n1) { /* more space needed */ buf = PyMem_Realloc(buf, (n2+1)*sizeof(wchar_t)); if (!buf) { |