aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-stopevent.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-stopevent.c')
-rw-r--r--gdb/python/py-stopevent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-stopevent.c b/gdb/python/py-stopevent.c
index bec49bc..70cd111 100644
--- a/gdb/python/py-stopevent.c
+++ b/gdb/python/py-stopevent.c
@@ -35,12 +35,12 @@ create_stop_event_object (PyTypeObject *py_type)
returns -1. */
int
-emit_stop_event (struct bpstats *bs, enum gdb_signal stop_signal)
+emit_stop_event (struct bpstat *bs, enum gdb_signal stop_signal)
{
gdbpy_ref<> stop_event_obj;
gdbpy_ref<> list;
PyObject *first_bp = NULL;
- struct bpstats *current_bs;
+ struct bpstat *current_bs;
if (evregpy_no_listeners_p (gdb_py_events.stop))
return 0;