From 2786d90617993c5958a477067b20882395de5ac9 Mon Sep 17 00:00:00 2001 From: Nicholas Bastin Date: Thu, 25 Mar 2004 02:16:23 +0000 Subject: A few more PyThreadState_Get to PyThreadState_GET conversions --- Python/dynload_shlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/dynload_shlib.c') 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) -- cgit v1.2.1