diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1994-03-05 22:45:47 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1994-03-05 22:45:47 +0000 |
commit | 849d0896f94476e8d94252e10ec0ed267790cb80 (patch) | |
tree | 7ba41f980968b7679d8a302157d1075f72279b98 /gdb/values.c | |
parent | 25677b5b30ebe0ce29eee82dd5dc75e14eb8413d (diff) | |
download | gdb-849d0896f94476e8d94252e10ec0ed267790cb80.zip gdb-849d0896f94476e8d94252e10ec0ed267790cb80.tar.gz gdb-849d0896f94476e8d94252e10ec0ed267790cb80.tar.bz2 |
Fix typo, value has not been changed to value_ptr in all places.
Diffstat (limited to 'gdb/values.c')
-rw-r--r-- | gdb/values.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/values.c b/gdb/values.c index bdabfb5..11ed6f1 100644 --- a/gdb/values.c +++ b/gdb/values.c @@ -31,7 +31,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Local function prototypes. */ -static value_ptr value_headof PARAMS ((value, struct type *, struct type *)); +static value_ptr value_headof PARAMS ((value_ptr, struct type *, + struct type *)); static void show_values PARAMS ((char *, int)); |