From 5f320335c3a8148ae98f82a00ff44954197f4251 Mon Sep 17 00:00:00 2001 From: Matthieu Herrb Date: Wed, 23 Mar 2005 21:09:48 +0000 Subject: bugzilla #2194: fix an alignement problem on 64 bit architectures. --- Xext/saver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Xext') diff --git a/Xext/saver.c b/Xext/saver.c index 76d044469..0c725421d 100644 --- a/Xext/saver.c +++ b/Xext/saver.c @@ -810,7 +810,7 @@ ScreenSaverSetAttributes (ClientPtr client) Bool fOK; DepthPtr pDepth; WindowOptPtr ancwopt; - unsigned long *pVlist; + unsigned int *pVlist; unsigned long *values = 0; unsigned long tmask, imask; unsigned long val; @@ -960,7 +960,7 @@ ScreenSaverSetAttributes (ClientPtr client) * to them. */ pAttr->mask = tmask = stuff->mask | CWOverrideRedirect; - pVlist = (unsigned long *) (stuff + 1); + pVlist = (unsigned int *) (stuff + 1); while (tmask) { imask = lowbit (tmask); tmask &= ~imask; -- cgit v1.2.3