summaryrefslogtreecommitdiff
path: root/gdb/infcall.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-05-30 16:08:27 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-05-30 16:08:27 +0000
commit91418c4d96655bf2d620040bab9d4b04eca31683 (patch)
treed730ad860c7d67108c2a58d11e4495741d06ef41 /gdb/infcall.c
parent08af17fe8d80b3cffdc819f3cf122c4a5a56e9bc (diff)
downloadgdb-91418c4d96655bf2d620040bab9d4b04eca31683.tar.gz
Rephrase error message in infcall.c:call_function_by_hand
No real change besides the error message. gdb/ChangeLog: * infcall.c (call_function_by_hand): Rephrase error message.
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r--gdb/infcall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c
index 4063b7ffabc..6553e2a1fd2 100644
--- a/gdb/infcall.c
+++ b/gdb/infcall.c
@@ -496,7 +496,7 @@ call_function_by_hand (struct value *function, int nargs, struct value **args)
error (_("May not call functions while looking at trace frames."));
if (execution_direction == EXEC_REVERSE)
- error (_("May not call functions in reverse."));
+ error (_("Cannot call functions in reverse mode."));
frame = get_current_frame ();
gdbarch = get_frame_arch (frame);