aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/status_padding.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/status_padding.c')
-rw-r--r--sway/commands/bar/status_padding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/bar/status_padding.c b/sway/commands/bar/status_padding.c
index 7a69a25d..0c65e516 100644
--- a/sway/commands/bar/status_padding.c
+++ b/sway/commands/bar/status_padding.c
@@ -15,7 +15,7 @@ struct cmd_results *bar_cmd_status_padding(int argc, char **argv) {
15 "Padding must be a positive integer"); 15 "Padding must be a positive integer");
16 } 16 }
17 config->current_bar->status_padding = padding; 17 config->current_bar->status_padding = padding;
18 wlr_log(WLR_DEBUG, "Status padding on bar %s: %d", 18 sway_log(SWAY_DEBUG, "Status padding on bar %s: %d",
19 config->current_bar->id, config->current_bar->status_padding); 19 config->current_bar->id, config->current_bar->status_padding);
20 return cmd_results_new(CMD_SUCCESS, NULL); 20 return cmd_results_new(CMD_SUCCESS, NULL);
21} 21}