From 666212d429159f826d0a82873cb3892ca61a59fb Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 24 Feb 1997 14:00:52 +0000 Subject: [PATCH] Make cache-alignment work always (in stead of 50% of the time:-) --- Mac/mwerks/malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/mwerks/malloc/malloc.c b/Mac/mwerks/malloc/malloc.c index fdf91d5198d..8de57584115 100644 --- a/Mac/mwerks/malloc/malloc.c +++ b/Mac/mwerks/malloc/malloc.c @@ -105,7 +105,7 @@ union overhead { #ifdef USE_CACHE_ALIGNED struct cachealigner { u_long ovalign[USE_CACHE_ALIGNED]; - }; + } ovu_aligner; #endif /* USE_CACHE_ALIGN */ };