From: ceriel Date: Tue, 17 Dec 1991 11:23:09 +0000 (+0000) Subject: Fix to previous fix X-Git-Tag: release-5-5~549 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=f442ba9141bcdb20ea0106cf6e50aff1b20267cd;p=ack.git Fix to previous fix --- diff --git a/lang/cem/cemcom.ansi/code.c b/lang/cem/cemcom.ansi/code.c index 899e8a8ba..d902886c6 100644 --- a/lang/cem/cemcom.ansi/code.c +++ b/lang/cem/cemcom.ansi/code.c @@ -624,9 +624,9 @@ bss(idf) #endif /* DBSYMTAB */ if (df->df_type->tp_size <= 0) { if (df->df_sc != STATIC && - df->df_type->tp_fund == ARRAY && df->df_type->next) { + df->df_type->tp_fund == ARRAY && df->df_type->tp_up) { C_df_dnam(idf->id_text); - C_bss_cst(ATW(df->df_type->next->tp_size), (arith)0, 1); + C_bss_cst(ATW(df->df_type->tp_up->tp_size), (arith)0, 1); } else error("size of %s unknown (\"%s\", line %d)" , idf->id_text, df->df_file, df->df_line);