diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-02-25 04:45:12 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-02-25 04:45:12 +0000 |
commit | efa817325f1856795e81956974c4bc9573ce8a88 (patch) | |
tree | 404ed531abfdeaa835681f8d60fca90fca9eb9d3 /gdb/remote-es.c | |
parent | 1d2f1f8ee1fc401ade25305b81d0aa99e702ad55 (diff) | |
download | gdb-efa817325f1856795e81956974c4bc9573ce8a88.tar.gz |
Replace calls to abort() with calls to internal_error().
Diffstat (limited to 'gdb/remote-es.c')
-rw-r--r-- | gdb/remote-es.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-es.c b/gdb/remote-es.c index 0500a14bb6d..764af505ee1 100644 --- a/gdb/remote-es.c +++ b/gdb/remote-es.c @@ -1031,7 +1031,7 @@ es1800_read_bytes (CORE_ADDR memaddr, char *myaddr, int len) if (len > PBUFSIZ / 2 - 1) { - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } if (len == 1) /* The emulator does not like expressions like: */ |