From: Fred Drake Date: Fri, 23 Mar 2001 17:34:02 +0000 (+0000) Subject: call_sys_exitfunc(): Remove unused variable f. X-Git-Tag: v2.1b2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a12d8d3b4b7c70f92a17a20cb811b18069fd349;p=thirdparty%2FPython%2Fcpython.git call_sys_exitfunc(): Remove unused variable f. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 374060724ebc..f1ed3963e07a 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1256,7 +1256,7 @@ call_sys_exitfunc(void) PyObject *exitfunc = PySys_GetObject("exitfunc"); if (exitfunc) { - PyObject *res, *f; + PyObject *res; Py_INCREF(exitfunc); PySys_SetObject("exitfunc", (PyObject *)NULL); res = PyEval_CallObject(exitfunc, (PyObject *)NULL);