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 | 3d6d86c64b85be304bccdbb0eeab64d82e95dd67 (patch) | |
tree | 8a1240660c46e76381346bb1576b10738057cfea /gdb/expprint.c | |
parent | 6943961c9855edf1dd701b0047483f6a8bca6d90 (diff) | |
download | gdb-3d6d86c64b85be304bccdbb0eeab64d82e95dd67.zip gdb-3d6d86c64b85be304bccdbb0eeab64d82e95dd67.tar.gz gdb-3d6d86c64b85be304bccdbb0eeab64d82e95dd67.tar.bz2 |
s/value_ptr/struct value */
Diffstat (limited to 'gdb/expprint.c')
-rw-r--r-- | gdb/expprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/expprint.c b/gdb/expprint.c index 0603ddd..cb61711 100644 --- a/gdb/expprint.c +++ b/gdb/expprint.c @@ -62,7 +62,7 @@ print_subexp (register struct expression *exp, register int *pos, enum precedence myprec = PREC_NULL; /* Set to 1 for a right-associative operator. */ int assoc = 0; - value_ptr val; + struct value *val; char *tempstr = NULL; op_print_tab = exp->language_defn->la_op_print_tab; |