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.
This commit is contained in:
Andrew Burgess 2013-07-31 10:51:42 +00:00
parent de74e63a56
commit 8150913ba7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-07-31 Andrew Burgess <aburgess@broadcom.com>
* utils.c (internal_verror): Replace use of deprecated_throw_reason
with call to fatal.
2013-07-31 Pedro Alves <pedro@codesourcery.com>
Yao Qi <yao@codesourcery.com>

View File

@ -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