diff options
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 39803d9..4878825 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -2415,7 +2415,7 @@ return_command (char *retval_exp, int from_tty) return_type = value_type (return_value); } do_cleanups (old_chain); - CHECK_TYPEDEF (return_type); + return_type = check_typedef (return_type); return_value = value_cast (return_type, return_value); /* Make sure the value is fully evaluated. It may live in the |