Index: xf86RandR.c =================================================================== RCS file: /cvs/xorg/xc/programs/Xserver/hw/xfree86/common/xf86RandR.c,v retrieving revision 1.4 diff -u -r1.4 xf86RandR.c --- xf86RandR.c 2 Aug 2004 19:35:07 -0000 1.4 +++ xf86RandR.c 11 Aug 2004 18:06:03 -0000 @@ -126,7 +126,7 @@ WindowPtr pRoot = WindowTable[pScreen->myNum]; if (pRoot) - xf86EnableDisableFBAccess (pScreen->myNum, FALSE); + (*scrp->EnableDisableFBAccess) (pScreen->myNum, FALSE); if (useVirtual) { scrp->virtualX = randrp->virtualX; @@ -165,7 +165,7 @@ xf86SetViewport (pScreen, pScreen->width, pScreen->height); xf86SetViewport (pScreen, 0, 0); if (pRoot) - xf86EnableDisableFBAccess (pScreen->myNum, TRUE); + (*scrp->EnableDisableFBAccess) (pScreen->myNum, TRUE); return TRUE; }