summaryrefslogtreecommitdiff
path: root/gdbsupport/common-exceptions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gdbsupport/common-exceptions.cc')
-rw-r--r--gdbsupport/common-exceptions.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdbsupport/common-exceptions.cc b/gdbsupport/common-exceptions.cc
index 2d686c4ee65..a9bda756d49 100644
--- a/gdbsupport/common-exceptions.cc
+++ b/gdbsupport/common-exceptions.cc
@@ -74,7 +74,7 @@ exceptions_state_mc (enum catcher_action action)
catchers.front ().state = CATCHER_RUNNING;
return 1;
default:
- internal_error (__FILE__, __LINE__, _("bad state"));
+ internal_error (_("bad state"));
}
case CATCHER_RUNNING:
switch (action)
@@ -90,7 +90,7 @@ exceptions_state_mc (enum catcher_action action)
/* See also throw_exception. */
return 1;
default:
- internal_error (__FILE__, __LINE__, _("bad switch"));
+ internal_error (_("bad switch"));
}
case CATCHER_RUNNING_1:
switch (action)
@@ -106,7 +106,7 @@ exceptions_state_mc (enum catcher_action action)
/* See also throw_exception. */
return 1;
default:
- internal_error (__FILE__, __LINE__, _("bad switch"));
+ internal_error (_("bad switch"));
}
case CATCHER_ABORTING:
switch (action)
@@ -119,10 +119,10 @@ exceptions_state_mc (enum catcher_action action)
return 0;
}
default:
- internal_error (__FILE__, __LINE__, _("bad state"));
+ internal_error (_("bad state"));
}
default:
- internal_error (__FILE__, __LINE__, _("bad switch"));
+ internal_error (_("bad switch"));
}
}