summaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authoraburgess <aburgess>2013-07-31 10:51:41 +0000
committeraburgess <aburgess>2013-07-31 10:51:41 +0000
commit71e62cdb4bd587906a4b949a14fd6c73c865c6cb (patch)
treebe3f2e6669477d2077b9147cf403df7340f505b0 /gdb/utils.c
parentcc734a965e0b979c2386dcb07b9c330e12dd168e (diff)
downloadgdb-71e62cdb4bd587906a4b949a14fd6c73c865c6cb.tar.gz
Remove deprecated_throw_reason from internal_verror.
http://sourceware.org/ml/gdb-patches/2013-07/msg00776.html gdb/ChangeLog * utils.c (internal_verror): Replace use of deprecated_throw_reason with call to fatal.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index 01212abf5ae..94ebce858c9 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -831,7 +831,7 @@ void
internal_verror (const char *file, int line, const char *fmt, va_list ap)
{
internal_vproblem (&internal_error_problem, file, line, fmt, ap);
- deprecated_throw_reason (RETURN_ERROR);
+ fatal (_("Command aborted."));
}
void