From 367c25e79e4b03b16daa64f5ea4665d7cc97742d Mon Sep 17 00:00:00 2001 From: Chengyu Zheng Date: Mon, 23 Apr 2018 19:19:03 +0200 Subject: [PATCH] remove output pos syntax fix fix --- sway/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/commands.c b/sway/commands.c index f75c21f0c..6af3c5d0c 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -322,7 +322,7 @@ struct cmd_results *execute_command(char *_exec, struct sway_seat *seat) { cmdlist += strspn(cmdlist, whitespace); do { // Split commands - cmd = argsep(&cmdlist, ";"); + cmd = argsep(&cmdlist, ","); cmd += strspn(cmd, whitespace); if (strcmp(cmd, "") == 0) { wlr_log(L_INFO, "Ignoring empty command.");