diff options
Diffstat (limited to 'gdb/common/common-exceptions.c')
-rw-r--r-- | gdb/common/common-exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/common/common-exceptions.c b/gdb/common/common-exceptions.c index b2d8e25..d00a805 100644 --- a/gdb/common/common-exceptions.c +++ b/gdb/common/common-exceptions.c @@ -195,12 +195,12 @@ throw_exception_cxx (struct gdb_exception exception) { if (exception.reason == RETURN_QUIT) { - gdb_exception_RETURN_MASK_QUIT ex (exception); + gdb_exception_quit ex (exception); throw ex; } else if (exception.reason == RETURN_ERROR) { - gdb_exception_RETURN_MASK_ERROR ex (exception); + gdb_exception_error ex (exception); throw ex; } else |