diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/exprs.c')
-rw-r--r-- | gdb/testsuite/gdb.base/exprs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/exprs.c b/gdb/testsuite/gdb.base/exprs.c index cd605f3..195b88e 100644 --- a/gdb/testsuite/gdb.base/exprs.c +++ b/gdb/testsuite/gdb.base/exprs.c @@ -156,7 +156,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 @@ -166,7 +166,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 |