silence compiler warning
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index d7ec730..145d5b6 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -487,6 +487,7 @@
 	/* 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)