summaryrefslogtreecommitdiff
path: root/sway/commands/bar/height.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-04-12 20:19:54 -0400
committerDrew DeVault <[email protected]>2018-04-12 20:19:54 -0400
commitcd1b32453a9296c18b28bff71607aeb22987b5cd (patch)
treec653c6d525b471914c01a9d7ae543f521b6138ed /sway/commands/bar/height.c
parent8e06985cc1b479724446fba752e0fecfb998e87b (diff)
parent5785170421dc38437acde8bb61068cd16fda716c (diff)
Merge branch 'wlroots'
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 eb576ab3..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;
- sway_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);
}