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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/bar/height.c b/sway/commands/bar/height.c
index 18258526..a2e72533 100644
--- a/sway/commands/bar/height.c
+++ b/sway/commands/bar/height.c
@@ -10,11 +10,11 @@ struct cmd_results *bar_cmd_height(int argc, char **argv) {
}
int height = atoi(argv[0]);
if (height < 0) {
- return cmd_results_new(CMD_INVALID, "height",
+ return cmd_results_new(CMD_INVALID,
"Invalid height value: %s", argv[0]);
}
config->current_bar->height = height;
wlr_log(WLR_DEBUG, "Setting bar height to %d on bar: %s",
height, config->current_bar->id);
- return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+ return cmd_results_new(CMD_SUCCESS, NULL);
}