summaryrefslogtreecommitdiff
path: root/gdb/cli/cli-script.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-12-25 22:24:39 +0000
committerAndrew Cagney <cagney@redhat.com>2001-12-25 22:24:39 +0000
commitb814415a8fffabeb188d8e4ae39c861a8a9570c9 (patch)
tree3a03c338d2878573f09c57c00df4ff93d120897e /gdb/cli/cli-script.c
parentfc677c0e8cc51af5529c0a0a08eebef31ce156ee (diff)
downloadgdb-b814415a8fffabeb188d8e4ae39c861a8a9570c9.tar.gz
* 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/cli-script.c')
-rw-r--r--gdb/cli/cli-script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c
index 3fb49f173b9..feec17fcc6f 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;