diff options
author | Drew DeVault <[email protected]> | 2018-03-29 22:05:16 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2018-03-29 22:11:08 -0400 |
commit | 741424c4e7811c12d8cca28466f89bd61eaf3a75 (patch) | |
tree | 37af2aa063d42bf6ef3bc967bb1a5b6b679abbaf /sway/commands/bar/separator_symbol.c | |
parent | 849c3515abff7033dbd4723fd7328cb07af74222 (diff) |
Clean up imported bar commands
Diffstat (limited to 'sway/commands/bar/separator_symbol.c')
-rw-r--r-- | sway/commands/bar/separator_symbol.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sway/commands/bar/separator_symbol.c b/sway/commands/bar/separator_symbol.c index 7dc0956b..1e08df6d 100644 --- a/sway/commands/bar/separator_symbol.c +++ b/sway/commands/bar/separator_symbol.c @@ -8,14 +8,13 @@ struct cmd_results *bar_cmd_separator_symbol(int argc, char **argv) { if ((error = checkarg(argc, "separator_symbol", EXPECTED_EQUAL_TO, 1))) { return error; } - if (!config->current_bar) { - return cmd_results_new(CMD_FAILURE, "separator_symbol", "No bar defined."); + return cmd_results_new(CMD_FAILURE, + "separator_symbol", "No bar defined."); } - free(config->current_bar->separator_symbol); config->current_bar->separator_symbol = strdup(argv[0]); - wlr_log(L_DEBUG, "Settings separator_symbol '%s' for bar: %s", config->current_bar->separator_symbol, config->current_bar->id); - + wlr_log(L_DEBUG, "Settings separator_symbol '%s' for bar: %s", + config->current_bar->separator_symbol, config->current_bar->id); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |