diff options
author | Simon Ser <contact@emersion.fr> | 2022-08-29 18:23:18 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-08-30 20:15:29 +0200 |
commit | aaa6c4ac892ddba1aa1892221324359a77e2eb3a (patch) | |
tree | f4047d30d56347c56866235f2e7a4c0557221faa | |
parent | 6e023257e8e9a6673fc3ff69048cdaf8baa70044 (diff) |
ipc: drop WLR_OUTPUT_ADAPTIVE_SYNC_UNKNOWN case
This has been removed from wlroots.
-rw-r--r-- | sway/ipc-json.c | 2 |
1 files changed, 0 insertions, 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; } |