diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-02-25 09:28:16 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-04-14 18:21:43 +0200 |
commit | 63f9bdf00126d4505235c533693c297722be57c8 (patch) | |
tree | c4375d71ff5a7c79a60501a2b0d0729ae182d8ed /sway/desktop/launcher.c | |
parent | ab4f46059793cbdd7942b128db970de95af37ed3 (diff) |
Fix old style function definitions
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'sway/desktop/launcher.c')
-rw-r--r-- | sway/desktop/launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/launcher.c b/sway/desktop/launcher.c index b666da1e..00a7e38a 100644 --- a/sway/desktop/launcher.c +++ b/sway/desktop/launcher.c @@ -228,7 +228,7 @@ struct launcher_ctx *launcher_ctx_create(struct wlr_xdg_activation_token_v1 *tok } // Creates a context with a new token for the internal launcher -struct launcher_ctx *launcher_ctx_create_internal() { +struct launcher_ctx *launcher_ctx_create_internal(void) { struct sway_seat *seat = input_manager_current_seat(); struct sway_workspace *ws = seat_get_focused_workspace(seat); if (!ws) { |