diff options
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 624a4c0..e62bb15 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -1682,8 +1682,7 @@ again: case 'f': /* Function returning another type */ type1 = read_type (pp, objfile); - type = make_function_type (type1, dbx_lookup_type (typenums, objfile), - objfile); + type = make_function_type (type1, dbx_lookup_type (typenums, objfile)); break; case 'g': /* Prototyped function. (Sun) */ @@ -1707,7 +1706,7 @@ again: struct type *return_type = read_type (pp, objfile); struct type *func_type = make_function_type (return_type, - dbx_lookup_type (typenums, objfile), objfile); + dbx_lookup_type (typenums, objfile)); struct type_list { struct type *type; struct type_list *next; |