Skip to content

Commit 551a66e

Browse files
committed
Use typedef name.
1 parent f5161e3 commit 551a66e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/ceval.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "pycore_call.h" // _PyObject_FastCallDictTstate()
1313
#include "pycore_ceval.h" // _PyEval_SignalAsyncExc()
1414
#include "pycore_code.h"
15+
#include "pycore_frame.h"
1516
#include "pycore_function.h"
1617
#include "pycore_long.h" // _PyLong_GetZero()
1718
#include "pycore_object.h" // _PyObject_GC_TRACK()
@@ -1032,7 +1033,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10321033
tstate->cframe = &cframe;
10331034

10341035
/* Push frame */
1035-
struct _PyInterpreterFrame py_frame;
1036+
PyInterpreterFrame py_frame;
10361037
py_frame.f_funcobj = Py_None;
10371038
py_frame.f_locals = NULL;
10381039
py_frame.frame_obj = NULL;

0 commit comments

Comments
 (0)