diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-02-24 14:00:52 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-02-24 14:00:52 (GMT) |
commit | 666212d429159f826d0a82873cb3892ca61a59fb (patch) | |
tree | 7c8c09ca6e311573f5565371488b1073feee6604 | |
parent | c587301e2e7267eb006ce77289154bc8665cce22 (diff) | |
download | cpython-666212d429159f826d0a82873cb3892ca61a59fb.zip cpython-666212d429159f826d0a82873cb3892ca61a59fb.tar.gz cpython-666212d429159f826d0a82873cb3892ca61a59fb.tar.bz2 |
Make cache-alignment work always (in stead of 50% of the time:-)
-rw-r--r-- | Mac/mwerks/malloc/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/mwerks/malloc/malloc.c b/Mac/mwerks/malloc/malloc.c index fdf91d5..8de5758 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 */ }; |