From 41007486bfc7095ef3e3d6a554a70176f0add1e2 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 9 Mar 1988 11:42:54 +0000 Subject: [PATCH] some compilers (Multimax) did not understand the sizeof constructions used --- util/ass/ass00.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/ass/ass00.c b/util/ass/ass00.c index 7fdd3b14d..a184d6cfa 100644 --- a/util/ass/ass00.c +++ b/util/ass/ass00.c @@ -317,9 +317,9 @@ initproc() { pstate.s_fline= lnp_cast 0 ; pstate.s_fdata= l_data ; pstate.s_locl = (locl_t (*)[]) - getarea(LOCLABSIZE * sizeof (*(pstate.s_locl))[0]); + getarea(LOCLABSIZE * sizeof ((*(pstate.s_locl))[0])); zero(chp_cast pstate.s_locl, - LOCLABSIZE * (unsigned) sizeof (*(pstate.s_locl))[0]); + LOCLABSIZE * (unsigned) sizeof ((*(pstate.s_locl))[0])); if ( memflg>2 ) memuse() ; } -- 2.34.1