From: ceriel Date: Thu, 26 Mar 1987 11:05:28 +0000 (+0000) Subject: align parameters on word_size, not word_align X-Git-Tag: release-5-5~4334 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=4eb84b928b7fdcbf442cd5da48a270e5d723537e;p=ack.git align parameters on word_size, not word_align --- diff --git a/lang/cem/cemcom/idf.c b/lang/cem/cemcom/idf.c index 80a0d05fe..fc0db651b 100644 --- a/lang/cem/cemcom/idf.c +++ b/lang/cem/cemcom/idf.c @@ -607,7 +607,7 @@ declare_formals(fp) word boundaries, i.e. take care that the following parameter starts on a new word boundary. */ - f_offset = align(f_offset + def->df_type->tp_size, word_align); + f_offset = align(f_offset + def->df_type->tp_size, (int) word_size); formal_cvt(def); /* cvt int to char or short, if necessary */ se = se->next; def->df_level = L_FORMAL2; /* CJ */