diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-04-22 23:49:51 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-04-22 23:49:51 +0000 |
commit | 0a2e98a99e49311bf57edd4d2476b05c0ba8fcde (patch) | |
tree | bd0d5995c5f2929c9ecd4b472046c875baeee368 /gdb/stabsread.c | |
parent | f645a4bf3855995ae0dbf847a64a258512847cf2 (diff) | |
download | gdb-0a2e98a99e49311bf57edd4d2476b05c0ba8fcde.zip gdb-0a2e98a99e49311bf57edd4d2476b05c0ba8fcde.tar.gz gdb-0a2e98a99e49311bf57edd4d2476b05c0ba8fcde.tar.bz2 |
* stabsread.c (read_type): Call read_type, not nonexistent
os9k_read_type.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 37c23ca..c6e4d78 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -1553,7 +1553,7 @@ read_type (pp, objfile) ++*pp; while (**pp != ')') { - t = os9k_read_type(pp, objfile); + t = read_type(pp, objfile); if (**pp == ',') ++*pp; } } |