From 3c7e17e8c1e46a14a18354eca2ef63e8b27bbcc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 28 Feb 2020 18:35:50 +0100 Subject: [PATCH] wayland: drop required wl_output interface version from 3 -> 2 We don't need version 3, and mutter 3.34 only implements version 2. --- wayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wayland.c b/wayland.c index a3b60d72..b48dfd65 100644 --- a/wayland.c +++ b/wayland.c @@ -356,7 +356,7 @@ handle_global(void *data, struct wl_registry *registry, } else if (strcmp(interface, wl_output_interface.name) == 0) { - const uint32_t required = 3; + const uint32_t required = 2; if (!verify_iface_version(interface, version, required)) return;