summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNicholas Bastin <nick.bastin@gmail.com>2004-03-25 02:16:23 (GMT)
committerNicholas Bastin <nick.bastin@gmail.com>2004-03-25 02:16:23 (GMT)
commit2786d90617993c5958a477067b20882395de5ac9 (patch)
treedf54e4547422e555f8d36277acb6d387793b06cc /Python
parentf167dc33805ad5e9c15327628969b91383eca037 (diff)
downloadcpython-2786d90617993c5958a477067b20882395de5ac9.zip
cpython-2786d90617993c5958a477067b20882395de5ac9.tar.gz
cpython-2786d90617993c5958a477067b20882395de5ac9.tar.bz2
A few more PyThreadState_Get to PyThreadState_GET conversions
Diffstat (limited to 'Python')
-rw-r--r--Python/dynload_shlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c
index af23f80..50851a8 100644
--- a/Python/dynload_shlib.c
+++ b/Python/dynload_shlib.c
@@ -109,7 +109,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
}
#if !(defined(PYOS_OS2) && defined(PYCC_GCC))
- dlopenflags = PyThreadState_Get()->interp->dlopenflags;
+ dlopenflags = PyThreadState_GET()->interp->dlopenflags;
#endif
if (Py_VerboseFlag)