From: Jim Kingdon Date: Fri, 22 Apr 1994 23:49:51 +0000 (+0000) Subject: * stabsread.c (read_type): Call read_type, not nonexistent X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a2e98a99e49311bf57edd4d2476b05c0ba8fcde;p=binutils-gdb.git * stabsread.c (read_type): Call read_type, not nonexistent os9k_read_type. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 21207117493..0dd9c4f0f63 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 37c23ca1261..c6e4d786f90 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; } }