summaryrefslogtreecommitdiff
path: root/Modules/_testcapimodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-23 20:12:33 +0000
committerBenjamin Peterson <benjamin@python.org>2008-12-23 20:12:33 +0000
commite098c4abe5d17fdd469d84ae740eb8bbd8ba9667 (patch)
tree082722b40855c527a72e3676d95be35ba17c494e /Modules/_testcapimodule.c
parentb6a53b5c5242759ef9c1411a770073c25e9cc4c4 (diff)
downloadcpython-git-e098c4abe5d17fdd469d84ae740eb8bbd8ba9667.tar.gz
make global static
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r--Modules/_testcapimodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index 4e81d63615..d640c39131 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -474,7 +474,7 @@ test_k_code(PyObject *self)
#ifdef Py_USING_UNICODE
-volatile int x;
+static volatile int x;
/* Test the u and u# codes for PyArg_ParseTuple. May leak memory in case
of an error.