fixing typedef bug that I introduced with previous checkin

This commit is contained in:
jband%netscape.com 1999-03-29 22:33:38 +00:00
Родитель d71744eb68
Коммит 032133b320
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -393,9 +393,9 @@ do_typedef(TreeState *state)
"sequences not supported, ignored");
} else {
state->tree = type;
fputs("typedef ", state->file);
if (!xpcom_type(state))
return FALSE;
fputs("typedef ", state->file);
fputs(" ", state->file);
if (IDL_NODE_TYPE(complex = IDL_LIST(dcls).data) == IDLN_TYPE_ARRAY) {
fprintf(state->file, "%s[%ld]",

Просмотреть файл

@ -393,9 +393,9 @@ do_typedef(TreeState *state)
"sequences not supported, ignored");
} else {
state->tree = type;
fputs("typedef ", state->file);
if (!xpcom_type(state))
return FALSE;
fputs("typedef ", state->file);
fputs(" ", state->file);
if (IDL_NODE_TYPE(complex = IDL_LIST(dcls).data) == IDLN_TYPE_ARRAY) {
fprintf(state->file, "%s[%ld]",