summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-02-24 14:00:52 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-02-24 14:00:52 (GMT)
commit666212d429159f826d0a82873cb3892ca61a59fb (patch)
tree7c8c09ca6e311573f5565371488b1073feee6604
parentc587301e2e7267eb006ce77289154bc8665cce22 (diff)
downloadcpython-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.c2
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 */
};