From: Benjamin Peterson Date: Mon, 22 Dec 2008 22:12:19 +0000 (+0000) Subject: silence compiler warning X-Git-Tag: v2.7a1~2507 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5423abd1824f7defde1698f8cd423de0e9164e06;p=thirdparty%2FPython%2Fcpython.git silence compiler warning --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index d7ec73031db0..145d5b62918b 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)