summaryrefslogtreecommitdiff
path: root/src/riva_cursor.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2007-11-26 13:14:40 -0800
committerAlan Coopersmith <alan.coopersmith@sun.com>2007-11-26 13:14:40 -0800
commit100f5e24da2cbc79ed761083daa9a00b107008ab (patch)
treea5acc843a94af3b4fb9598237e46901cbd970ffc /src/riva_cursor.c
parente9ada35b4d24abd44bc5d811b59c6f25af5984f4 (diff)
xcalloc needs 2 args, Xcalloc takes one - yay for inconsistency!
Diffstat (limited to 'src/riva_cursor.c')
-rw-r--r--src/riva_cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/riva_cursor.c b/src/riva_cursor.c
index 77a3bfe..35d6a58 100644
--- a/src/riva_cursor.c
+++ b/src/riva_cursor.c
@@ -72,7 +72,7 @@ RivaTransformCursor (RivaPtr pRiva)
int i, dwords;
dwords = (32 * 32) >> 1;
- if(!(tmp = xcalloc(dwords * 4))) return;
+ if(!(tmp = Xcalloc(dwords * 4))) return;
RivaConvertCursor1555(pRiva, pRiva->curImage, (CARD16*)tmp);
for(i = 0; i < dwords; i++)