From 8e65ff28b0780a52bdbe067b6297a66f9ec4e16e Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Thu, 8 Feb 2001 06:03:54 +0000 Subject: Add __FILE__ and __LINE__ parameter to internal_error() / internal_verror(). --- gdb/remote-mips.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gdb/remote-mips.c') diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index cc53c70..01c6054 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -1243,7 +1243,8 @@ mips_request (int cmd, if (cmd != '\0') { if (mips_need_reply) - internal_error ("mips_request: Trying to send command before reply"); + internal_error (__FILE__, __LINE__, + "mips_request: Trying to send command before reply"); sprintf (buff, "0x0 %c 0x%s 0x%s", cmd, paddr_nz (addr), paddr_nz (data)); mips_send_packet (buff, 1); mips_need_reply = 1; @@ -1253,7 +1254,8 @@ mips_request (int cmd, return 0; if (!mips_need_reply) - internal_error ("mips_request: Trying to get reply before command"); + internal_error (__FILE__, __LINE__, + "mips_request: Trying to get reply before command"); mips_need_reply = 0; -- cgit v1.1