Module: wine Branch: master Commit: acd7862a0ea41b36b86056ed63ddb0ac37163dfd URL: https://gitlab.winehq.org/wine/wine/-/commit/acd7862a0ea41b36b86056ed63ddb0a...
Author: Alexandre Julliard julliard@winehq.org Date: Sun Jun 9 22:29:46 2024 +0200
winex11: Fix build error when XShm is missing.
---
dlls/winex11.drv/bitblt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/bitblt.c b/dlls/winex11.drv/bitblt.c index e1a05cf612b..11ba34739c3 100644 --- a/dlls/winex11.drv/bitblt.c +++ b/dlls/winex11.drv/bitblt.c @@ -1861,7 +1861,7 @@ static XImage *create_shm_image( const XVisualInfo *vis, int width, int height, return NULL; }
-static BOOL destroy_shm_image( XImage *image ) +static BOOL destroy_shm_image( XImage *image, x11drv_xshm_info_t *shminfo ) { return FALSE; }