fix another struct type parsing bug

This commit is contained in:
Bill Currie 2003-04-07 22:24:15 +00:00
parent b7d7e7e87f
commit a9fb183d19

View file

@ -463,9 +463,10 @@ _parse_type (const char **str)
(*str)++;
while (**str && **str != '}')
_parse_type (str);
if (**str != '}')
return 0;
}
if (**str != '}')
return 0;
(*str)++;
return new.aux_type;
}
if (**str != '=') {