summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-02-28 15:50:27 -0300
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-02-02 16:29:27 -0200
commit537eb52fe266ac439c4b383bb04a70017b709911 (patch)
tree71299e442b27377475549978767f5871e75a6c71
parentffd0300fb74c6183208ae599133f2ded09e08d97 (diff)
WORD64 compile fix. This bug catched on a overview of the code.
The code is wrong since the first git revision, so it seens that it has not been compiled with WORD64 for quite some time, there is also another interesting code in xkb/XKBRdBuf.c: <hash>ifdef WORD64 _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8 <hash>endif and possibly there are other similar problems.
-rw-r--r--src/XlibInt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/XlibInt.c b/src/XlibInt.c
index 5edf7896..4159923e 100644
--- a/src/XlibInt.c
+++ b/src/XlibInt.c
@@ -3213,7 +3213,7 @@ static doData32(
void _XData32(
Display *dpy,
long *data,
- unsigned len,
+ unsigned len)
{
char packbuffer[PACKBUFFERSIZE];
unsigned nunits = PACKBUFFERSIZE >> 2;