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
committed by Enrico Weigelt
parent c998f14c76
commit ef31842e84

View File

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