From 76760525c13b5d659e4a28fb08e89de46ce09e11 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 8 May 2024 12:50:48 +0200 Subject: use XNFalloc() instead of xnfalloc xnfalloc is just an alias for XNFalloc() that doesn't seem to serve any practical purpose, so it can go away once all drivers stopped using it. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- src/atimach64accel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/atimach64accel.c') diff --git a/src/atimach64accel.c b/src/atimach64accel.c index 0453f22..9293c5e 100644 --- a/src/atimach64accel.c +++ b/src/atimach64accel.c @@ -1034,7 +1034,7 @@ ATIMach64AccelInit pATI->ExpansionBitmapWidth = /* DWord size in bits */ ((pATI->displayWidth * pATI->XModifier) + 31) & ~31U; pATI->ExpansionBitmapScanlinePtr[1] = - (CARD32 *)xnfalloc((pATI->ExpansionBitmapWidth >> 3) + 63); + (CARD32 *)XNFalloc((pATI->ExpansionBitmapWidth >> 3) + 63); pATI->ExpansionBitmapScanlinePtr[0] = (pointer)(((unsigned long)pATI->ExpansionBitmapScanlinePtr[1] + 63) & ~63UL); -- cgit v1.2.3