From: Jack Jansen Date: Mon, 24 Feb 1997 14:00:52 +0000 (+0000) Subject: Make cache-alignment work always (in stead of 50% of the time:-) X-Git-Tag: v1.5a1~322 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=666212d429159f826d0a82873cb3892ca61a59fb;p=thirdparty%2FPython%2Fcpython.git Make cache-alignment work always (in stead of 50% of the time:-) --- diff --git a/Mac/mwerks/malloc/malloc.c b/Mac/mwerks/malloc/malloc.c index fdf91d5198d4..8de575841151 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 */ };