diff options
Diffstat (limited to 'gdb/macroexp.c')
-rw-r--r-- | gdb/macroexp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/macroexp.c b/gdb/macroexp.c index be5723f..6bd5ef5 100644 --- a/gdb/macroexp.c +++ b/gdb/macroexp.c @@ -632,8 +632,7 @@ append_tokens_without_splicing (growable_macro_buffer *dest, /* As far as I know, there's no case where inserting a space isn't enough to prevent a splice. */ - internal_error (__FILE__, __LINE__, - _("unable to avoid splicing tokens during macro expansion")); + internal_error (_("unable to avoid splicing tokens during macro expansion")); } /* Stringify an argument, and insert it into DEST. ARG is the text to @@ -1311,7 +1310,7 @@ expand (const char *id, return 1; } else - internal_error (__FILE__, __LINE__, _("bad macro definition kind")); + internal_error (_("bad macro definition kind")); } |