summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/aticonfig.c2
-rw-r--r--src/atimach64accel.c2
-rw-r--r--src/atimach64xv.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/aticonfig.c b/src/aticonfig.c
index cc8435e..eef46ea 100644
--- a/src/aticonfig.c
+++ b/src/aticonfig.c
@@ -262,7 +262,7 @@ ATIProcessOptions
ATIPtr pATI
)
{
- OptionInfoPtr PublicOption = xnfalloc(ATIPublicOptionSize);
+ OptionInfoPtr PublicOption = XNFalloc(ATIPublicOptionSize);
OptionInfoRec PrivateOption[] =
{
{ /* ON: Let BIOS change display(s) */
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);
diff --git a/src/atimach64xv.c b/src/atimach64xv.c
index 0aa8852..bb3f486 100644
--- a/src/atimach64xv.c
+++ b/src/atimach64xv.c
@@ -1370,7 +1370,7 @@ ATIMach64XVInitialiseAdaptor
if (!(pAdaptor = xf86XVAllocateVideoAdaptorRec(pScreenInfo)))
return 0;
- ppAdaptor = xnfalloc(sizeof(pAdaptor));
+ ppAdaptor = XNFalloc(sizeof(pAdaptor));
ppAdaptor[0] = pAdaptor;
pAdaptor->nPorts = 1;