summaryrefslogtreecommitdiff
path: root/sway/commands/bar/status_command.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-03-29 22:05:16 -0400
committerDrew DeVault <[email protected]>2018-03-29 22:11:08 -0400
commit741424c4e7811c12d8cca28466f89bd61eaf3a75 (patch)
tree37af2aa063d42bf6ef3bc967bb1a5b6b679abbaf /sway/commands/bar/status_command.c
parent849c3515abff7033dbd4723fd7328cb07af74222 (diff)
Clean up imported bar commands
Diffstat (limited to 'sway/commands/bar/status_command.c')
-rw-r--r--sway/commands/bar/status_command.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sway/commands/bar/status_command.c b/sway/commands/bar/status_command.c
index 05377fcc..5e199cde 100644
--- a/sway/commands/bar/status_command.c
+++ b/sway/commands/bar/status_command.c
@@ -8,14 +8,13 @@ struct cmd_results *bar_cmd_status_command(int argc, char **argv) {
if ((error = checkarg(argc, "status_command", EXPECTED_AT_LEAST, 1))) {
return error;
}
-
if (!config->current_bar) {
- return cmd_results_new(CMD_FAILURE, "status_command", "No bar defined.");
+ return cmd_results_new(CMD_FAILURE,
+ "status_command", "No bar defined.");
}
-
free(config->current_bar->status_command);
config->current_bar->status_command = join_args(argv, argc);
- wlr_log(L_DEBUG, "Feeding bar with status command: %s", config->current_bar->status_command);
-
+ wlr_log(L_DEBUG, "Feeding bar with status command: %s",
+ config->current_bar->status_command);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}