summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-22 22:12:19 +0000
committerBenjamin Peterson <benjamin@python.org>2008-12-22 22:12:19 +0000
commit5423abd1824f7defde1698f8cd423de0e9164e06 (patch)
treede11ee9739c1a91fbfa136aa241ac9ae677b7267
parentcf2ce24db58859881ab4f63189d51d1d5f394b9c (diff)
downloadcpython-git-5423abd1824f7defde1698f8cd423de0e9164e06.tar.gz
silence compiler warning
-rw-r--r--Modules/_testcapimodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index d7ec73031d..145d5b6291 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -487,6 +487,7 @@ test_u_code(PyObject *self)
/* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */
/* Just use the macro and check that it compiles */
int x = Py_UNICODE_ISSPACE(25);
+ x = x;
tuple = PyTuple_New(1);
if (tuple == NULL)