diff options
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 677b336..396799d 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -1866,10 +1866,10 @@ If you continue, the return value that you specified will be ignored.\n"; { int confirmed; if (thisfun == NULL) - confirmed = query ("%sMake selected stack frame return now? ", + confirmed = query (_("%sMake selected stack frame return now? "), query_prefix); else - confirmed = query ("%sMake %s return now? ", query_prefix, + confirmed = query (_("%sMake %s return now? "), query_prefix, SYMBOL_PRINT_NAME (thisfun)); if (!confirmed) error (_("Not confirmed")); |