diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-12-23 20:12:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-12-23 20:12:33 (GMT) |
commit | e098c4abe5d17fdd469d84ae740eb8bbd8ba9667 (patch) | |
tree | 082722b40855c527a72e3676d95be35ba17c494e /Modules | |
parent | b6a53b5c5242759ef9c1411a770073c25e9cc4c4 (diff) | |
download | cpython-e098c4abe5d17fdd469d84ae740eb8bbd8ba9667.zip cpython-e098c4abe5d17fdd469d84ae740eb8bbd8ba9667.tar.gz cpython-e098c4abe5d17fdd469d84ae740eb8bbd8ba9667.tar.bz2 |
make global static
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 4e81d63..d640c39 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. |