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/gnu-nat.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/gnu-nat.c')
-rw-r--r-- | gdb/gnu-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c index 0e584e9..fb020b1 100644 --- a/gdb/gnu-nat.c +++ b/gdb/gnu-nat.c @@ -1,5 +1,5 @@ /* Interface GDB to the GNU Hurd. - Copyright 1992, 1995, 1996, 1997, 1998, 1999, 2000 + Copyright 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -2957,14 +2957,14 @@ static void info_port_rights (char *args, mach_port_type_t only) { struct inf *inf = active_inf (); - value_ptr vmark = value_mark (); + struct value *vmark = value_mark (); if (args) /* Explicit list of port rights. */ { while (*args) { - value_ptr val = parse_to_comma_and_eval (&args); + struct value *val = parse_to_comma_and_eval (&args); long right = value_as_long (val); error_t err = print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS, |