fixes to cmd queue freeing, style

This commit is contained in:
Luminarys 2015-08-13 13:22:20 -05:00
parent 9a0a858d1e
commit 527288a826
3 changed files with 3 additions and 4 deletions

View file

@ -77,7 +77,7 @@ struct sway_config *read_config(FILE *file, bool is_active) {
char *cmd = malloc(strlen(line) + 1);
strcpy(cmd, line);
list_add(config->cmd_queue, cmd);
}else if (!temp_depth && !handle_command(config, line)) {
} else if (!temp_depth && !handle_command(config, line)) {
sway_log(L_DEBUG, "Config load failed for line %s", line);
success = false;
}