summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authortsi <tsi>2000-08-31 19:03:53 +0000
committertsi <tsi>2000-08-31 19:03:53 +0000
commit6674f342b707eb7cbbe8c15996b3926b777153f2 (patch)
treec82041c80fe7318d34aec154bbbdbdc21116a3a8 /util
parent37e498bff3a143ee4396fbd1970558dbeffd8b69 (diff)
571. Fix input event queueuing for 64-bit platforms (Marc La France).
570. IA-64 changes resulting from a source cross-check with Alpha support for 64-bit dependencies (Marc La France). 569. Fix in ATI driver for DPMS support on panels (Marc La France).
Diffstat (limited to 'util')
-rw-r--r--util/memleak/fmalloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/util/memleak/fmalloc.c b/util/memleak/fmalloc.c
index 557980d21..dc7da02e8 100644
--- a/util/memleak/fmalloc.c
+++ b/util/memleak/fmalloc.c
@@ -22,7 +22,7 @@ in this Software without prior written authorization from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
-/* $XFree86: xc/util/memleak/fmalloc.c,v 3.7 2000/05/06 22:23:48 keithp Exp $ */
+/* $XFree86: xc/util/memleak/fmalloc.c,v 3.8 2000/06/15 01:26:22 dawes Exp $ */
/*
@@ -102,7 +102,8 @@ typedef struct _head {
typedef struct _tail {
magic tailMagic;
-#if defined(__alpha) || defined(__alpha__)
+#if defined(__alpha) || defined(__alpha__) || \
+ defined(ia64) || deined(__ia64__)
magic tailPad;
#endif
} TailRec, *TailPtr;