aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-02-25 09:28:16 +0100
committerSimon Ser <contact@emersion.fr>2023-04-14 18:21:43 +0200
commit63f9bdf00126d4505235c533693c297722be57c8 (patch)
treec4375d71ff5a7c79a60501a2b0d0729ae182d8ed /sway/commands
parentab4f46059793cbdd7942b128db970de95af37ed3 (diff)
Fix old style function definitions
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/split.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c
index c8a2cfc1..500a497d 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -32,7 +32,7 @@ static struct cmd_results *do_split(int layout) {
return cmd_results_new(CMD_SUCCESS, NULL);
}
-static struct cmd_results *do_unsplit() {
+static struct cmd_results *do_unsplit(void) {
struct sway_container *con = config->handler_context.container;
struct sway_workspace *ws = config->handler_context.workspace;