diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-01-04 05:20:09 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-01-04 05:20:09 +0000 |
commit | 7ee81d057f1d80798fd9555cf042c01a002d9cba (patch) | |
tree | d271912ee5d87131cdb8dcdddea6fb992efec766 /gdb/scm-lang.c | |
parent | e2825c85cba8750e941df0af0ee9b4e013e5bed0 (diff) | |
download | gdb-7ee81d057f1d80798fd9555cf042c01a002d9cba.tar.gz |
s/value_ptr/struct value */
Diffstat (limited to 'gdb/scm-lang.c')
-rw-r--r-- | gdb/scm-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/scm-lang.c b/gdb/scm-lang.c index ab71c831b0d..4f1295c2df3 100644 --- a/gdb/scm-lang.c +++ b/gdb/scm-lang.c @@ -1,5 +1,5 @@ /* Scheme/Guile language support routines for GDB, the GNU debugger. - Copyright 1995, 1996, 1998, 2000, 2001 + Copyright 1995, 1996, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GDB. @@ -150,7 +150,7 @@ in_eval_c (void) static struct value * scm_lookup_name (char *str) { - value_ptr args[3]; + struct value *args[3]; int len = strlen (str); struct value *func; struct value *val; |