summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-20 10:32:24 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-20 10:32:24 (GMT)
commitf50e1877245123a21f053d73951594794fa18500 (patch)
tree87e7cee7867121452aa3b880ca0b950be1fefde7 /Objects/unicodeobject.c
parent7f04d4d4b7fe0ed5c56b1778c63ee6ac2170a694 (diff)
downloadcpython-f50e1877245123a21f053d73951594794fa18500.zip
cpython-f50e1877245123a21f053d73951594794fa18500.tar.gz
cpython-f50e1877245123a21f053d73951594794fa18500.tar.bz2
Fix compiler warnings: comparison between signed and unsigned numbers
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index ab22289..56d9a02 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -4799,7 +4799,7 @@ _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
/* Note: size will always be longer than the resulting Unicode
character count */
- if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1))
+ if (PY_SSIZE_T_MAX / (Py_ssize_t)sizeof(wchar_t) < (size + 1))
return NULL;
unicode = PyMem_RawMalloc((size + 1) * sizeof(wchar_t));
if (!unicode)