summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Behan <connor.behan@gmail.com>2024-06-23 02:05:29 -0300
committerMartin-Éric RACINE <martin-eric.racine@iki.fi>2024-06-24 21:06:16 +0300
commitc1a96d05ef0f76e933a8c002c75f548de8c2f14b (patch)
tree3e7a233792b551025d0ba22d66d5aa2364c753f0
parentfc81b029c9a3eab94f6985640d6c629ae70cf112 (diff)
Fix exaOffscreenFree call
-rw-r--r--src/gx_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gx_video.c b/src/gx_video.c
index 7c0c162..4cc2836 100644
--- a/src/gx_video.c
+++ b/src/gx_video.c
@@ -1346,7 +1346,7 @@ GXBlockHandler(BLOCKHANDLER_ARGS_DECL)
if (pPriv->area) {
#ifdef XF86EXA
if (pGeode->useEXA)
- exaOffscreenFree(pScrni, pPriv->area);
+ exaOffscreenFree(pScrni->pScreen, pPriv->area);
#endif
if (!pGeode->useEXA)
xf86FreeOffscreenArea(pPriv->area);