aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/whatis.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.base/whatis.c')
-rw-r--r--gdb/testsuite/gdb.base/whatis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/whatis.c b/gdb/testsuite/gdb.base/whatis.c
index 11c84d2..743cb61 100644
--- a/gdb/testsuite/gdb.base/whatis.c
+++ b/gdb/testsuite/gdb.base/whatis.c
@@ -207,7 +207,7 @@ double v_double_func () { return (0.0); }
struct link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif
@@ -217,7 +217,7 @@ struct link {
union tu_link {
struct link *next;
#ifdef __STDC__
- struct link *(*linkfunc) (struct link *this, int flags);
+ struct link *(*linkfunc) (struct link *self, int flags);
#else
struct link *(*linkfunc) ();
#endif