Xext: shape: fix non-ximerama build

In the non-XINERAMA code path, a parameter was missing.

Fixes: a57db845bb
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-08-11 20:03:38 +02:00
parent a1c3dcb527
commit a18524fa5d

View File

@@ -316,7 +316,7 @@ ProcShapeRectangles(ClientPtr client)
}
return result;
#else
return ShapeRectangles(client);
return ShapeRectangles(client, stuff);
#endif
}