diff options
author | Simon Ser <contact@emersion.fr> | 2023-01-31 15:55:48 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-01-31 16:20:33 +0100 |
commit | e1a1dc4be5eba4faa7c81ef9039278a4ae5ba6a9 (patch) | |
tree | 1b50c9448f2b56f9b5528bd33bc9f19271ae48b1 | |
parent | e69dd909f71c13c72c9d317465e75ad1f65b514e (diff) |
xdg-shell: remove unnecessary return
We're at the end of the function anyways.
-rw-r--r-- | types/xdg_shell/wlr_xdg_toplevel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/types/xdg_shell/wlr_xdg_toplevel.c b/types/xdg_shell/wlr_xdg_toplevel.c index a8728141..26bf15bc 100644 --- a/types/xdg_shell/wlr_xdg_toplevel.c +++ b/types/xdg_shell/wlr_xdg_toplevel.c @@ -147,7 +147,6 @@ void handle_xdg_toplevel_committed(struct wlr_xdg_toplevel *toplevel) { WLR_XDG_TOPLEVEL_WM_CAPABILITIES_FULLSCREEN | WLR_XDG_TOPLEVEL_WM_CAPABILITIES_MINIMIZE); } - return; } } |