From 2c5d3cbfb88cf732adcd6c659ce875912ee70ee3 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 11 Oct 2011 22:35:52 +0200 Subject: [PATCH] Fix a compiler warning in _locale --- Modules/_localemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 72450def3d6..9bba1b39cf7 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) {