* stabsread.c (read_type): Call read_type, not nonexistent

os9k_read_type.
This commit is contained in:
Jim Kingdon 1994-04-22 23:49:51 +00:00
parent f645a4bf38
commit 0a2e98a99e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Apr 22 16:43:54 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* stabsread.c (read_type): Call read_type, not nonexistent
os9k_read_type.
Fri Apr 22 14:25:36 1994 Kung Hsu (kung@mexican.cygnus.com)
* remote-os9k.c (rombug_fetch_registers): set trace mode

View File

@ -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;
}
}