aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/bar/height.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/height.c')
-rw-r--r--sway/commands/bar/height.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/commands/bar/height.c b/sway/commands/bar/height.c
index ae0c7834..3160caed 100644
--- a/sway/commands/bar/height.c
+++ b/sway/commands/bar/height.c
@@ -8,14 +8,13 @@ struct cmd_results *bar_cmd_height(int argc, char **argv) {
if ((error = checkarg(argc, "height", EXPECTED_EQUAL_TO, 1))) {
return error;
}
-
int height = atoi(argv[0]);
if (height < 0) {
return cmd_results_new(CMD_INVALID, "height",
"Invalid height value: %s", argv[0]);
}
-
config->current_bar->height = height;
- wlr_log(L_DEBUG, "Setting bar height to %d on bar: %s", height, config->current_bar->id);
+ wlr_log(L_DEBUG, "Setting bar height to %d on bar: %s",
+ height, config->current_bar->id);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}