From 6a12d8d3b4b7c70f92a17a20cb811b18069fd349 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 23 Mar 2001 17:34:02 +0000 Subject: [PATCH] call_sys_exitfunc(): Remove unused variable f. --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 374060724eb..f1ed3963e07 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);