Skip to content
Prev Previous commit
Next Next commit
fix build error
  • Loading branch information
koubaa committed Sep 6, 2020
commit 8d1a79031ec77cba10d51f4a40bb1674689e131d
2 changes: 1 addition & 1 deletion Modules/_curses_panel.c
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ static PyMethodDef PyCurses_methods[] = {
static int
_curses_exec(PyObject *m)
{
_curses_panel_state *state = get_curses_panelstate(m);
_curses_panelstate *state = get_curses_panelstate(m);
/* Initialize object type */
state->PyCursesPanel_Type = PyType_FromModuleAndSpec(
m, &PyCursesPanel_Type_spec, NULL);
Expand Down