From aaa6c4ac892ddba1aa1892221324359a77e2eb3a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 29 Aug 2022 18:23:18 +0200 Subject: [PATCH] ipc: drop WLR_OUTPUT_ADAPTIVE_SYNC_UNKNOWN case This has been removed from wlroots. --- sway/ipc-json.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sway/ipc-json.c b/sway/ipc-json.c index e422b24d..63c182f2 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -112,8 +112,6 @@ static const char *ipc_json_output_adaptive_sync_status_description( return "disabled"; case WLR_OUTPUT_ADAPTIVE_SYNC_ENABLED: return "enabled"; - case WLR_OUTPUT_ADAPTIVE_SYNC_UNKNOWN: - return "unknown"; } return NULL; }