diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-12-25 22:24:39 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-12-25 22:24:39 +0000 |
commit | f976f6d464baa59f8d890626648c74943aed1ce1 (patch) | |
tree | f542587c8c572708118ff623e37384230261e87f /gdb/cli | |
parent | 06b25f14b06f7ce665b495a436afc79d0c91a97f (diff) | |
download | gdb-f976f6d464baa59f8d890626648c74943aed1ce1.zip gdb-f976f6d464baa59f8d890626648c74943aed1ce1.tar.gz gdb-f976f6d464baa59f8d890626648c74943aed1ce1.tar.bz2 |
* cli/cli-script.c (execute_control_command): Replace value_ptr
with a struct value pointer.
* ch-lang.c (evaluate_subexp_chill): Ditto.
* printcmd.c (printf_command): Ditto.
* tracepoint.c (set_traceframe_context): Ditto.
(encode_actions): Ditto.
* eval.c (evaluate_subexp_standard): Ditto.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c index 3fb49f1..feec17f 100644 --- a/gdb/cli/cli-script.c +++ b/gdb/cli/cli-script.c @@ -332,8 +332,8 @@ execute_control_command (struct command_line *cmd) struct expression *expr; struct command_line *current; struct cleanup *old_chain = 0; - value_ptr val; - value_ptr val_mark; + struct value *val; + struct value *val_mark; int loop; enum command_control_type ret; char *new_line; |