diff options
author | Nicholas Bastin <nick.bastin@gmail.com> | 2004-03-25 02:16:23 +0000 |
---|---|---|
committer | Nicholas Bastin <nick.bastin@gmail.com> | 2004-03-25 02:16:23 +0000 |
commit | e5385d82246f2aed8aa23587cbdd7d500d03d21e (patch) | |
tree | 68798e5ebb4d3b0066d040202ea85f69842c04ed /Python | |
parent | 3c35809fe8fe8388295d21c1144272712d6a67e6 (diff) | |
download | cpython-e5385d82246f2aed8aa23587cbdd7d500d03d21e.tar.gz |
A few more PyThreadState_Get to PyThreadState_GET conversions
Diffstat (limited to 'Python')
-rw-r--r-- | Python/dynload_shlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c index af23f80a27..50851a876f 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) |