diff options
Diffstat (limited to 'gdb/solib-dsbt.c')
-rw-r--r-- | gdb/solib-dsbt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/solib-dsbt.c b/gdb/solib-dsbt.c index 2031014..4cd8a69 100644 --- a/gdb/solib-dsbt.c +++ b/gdb/solib-dsbt.c @@ -830,14 +830,13 @@ enable_break (void) in the dynamic linker itself. */ gdb_bfd_ref_ptr tmp_bfd; - TRY + try { tmp_bfd = solib_bfd_open (buf); } - CATCH (ex, RETURN_MASK_ALL) + catch (const gdb_exception_RETURN_MASK_ALL &ex) { } - END_CATCH if (tmp_bfd == NULL) { |