diff options
Diffstat (limited to 'gdb/python/py-stopevent.c')
-rw-r--r-- | gdb/python/py-stopevent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-stopevent.c b/gdb/python/py-stopevent.c index b87ebda..cfa4591 100644 --- a/gdb/python/py-stopevent.c +++ b/gdb/python/py-stopevent.c @@ -36,8 +36,8 @@ create_stop_event_object (PyTypeObject *py_type) int emit_stop_event (struct bpstats *bs, enum gdb_signal stop_signal) { - gdbpy_ref stop_event_obj; - gdbpy_ref list; + gdbpy_ref<> stop_event_obj; + gdbpy_ref<> list; PyObject *first_bp = NULL; struct bpstats *current_bs; |