Fix "auxiliary" typo
[deliverable/binutils-gdb.git] / gdb / x86-linux-nat.c
index f60ed8a9bdedc0f276200b02fb77f4cc278f0b86..fe85358fa263adfee386b63d7950d6cb77d46f93 100644 (file)
@@ -217,16 +217,15 @@ x86_linux_nat_target::enable_btrace (ptid_t ptid,
                                     const struct btrace_config *conf)
 {
   struct btrace_target_info *tinfo = nullptr;
-  TRY
+  try
     {
       tinfo = linux_enable_btrace (ptid, conf);
     }
-  CATCH (exception, RETURN_MASK_ERROR)
+  catch (const gdb_exception_error &exception)
     {
       error (_("Could not enable branch tracing for %s: %s"),
             target_pid_to_str (ptid).c_str (), exception.what ());
     }
-  END_CATCH
 
   return tinfo;
 }
This page took 0.023664 seconds and 4 git commands to generate.