fix output resolution parsing error

This commit is contained in:
Chengyu Zheng 2018-04-23 18:12:31 +02:00
parent 82cb379727
commit 6e71355ee2

View file

@ -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.");