aboutsummaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-04-22 23:49:51 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-04-22 23:49:51 +0000
commit0a2e98a99e49311bf57edd4d2476b05c0ba8fcde (patch)
treebd0d5995c5f2929c9ecd4b472046c875baeee368 /gdb/stabsread.c
parentf645a4bf3855995ae0dbf847a64a258512847cf2 (diff)
downloadgdb-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.c2
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;
}
}