Skip to content

Commit 06c2ad6

Browse files
committed
Use typedef name.
1 parent f5161e3 commit 06c2ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10321032
tstate->cframe = &cframe;
10331033

10341034
/* Push frame */
1035-
struct _PyInterpreterFrame py_frame;
1035+
_PyInterpreterFrame py_frame;
10361036
py_frame.f_funcobj = Py_None;
10371037
py_frame.f_locals = NULL;
10381038
py_frame.frame_obj = NULL;

0 commit comments

Comments
 (0)