diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-11-10 21:34:56 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-11-10 21:34:56 +0000 |
commit | 81a78e46ed096779ad2e440e9ad0ef68a36aa21e (patch) | |
tree | e4ef54f7dc4f536603ccae644e7f9131c26f1d2f /gdb/infcmd.c | |
parent | 409c3a54148befd6e9e031dd0a969becf5bbdb94 (diff) | |
download | gdb-81a78e46ed096779ad2e440e9ad0ef68a36aa21e.tar.gz |
s/value_ptr/struct value */
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 482db0f26a4..67c57d0373b 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1023,7 +1023,7 @@ until_command (char *arg, int from_tty) static void print_return_value (int structure_return, struct type *value_type) { - register value_ptr value; + struct value *value; #ifdef UI_OUT static struct ui_stream *stb = NULL; #endif /* UI_OUT */ |