aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/separator_symbol.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/separator_symbol.c')
-rw-r--r--sway/commands/bar/separator_symbol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/bar/separator_symbol.c b/sway/commands/bar/separator_symbol.c
index 145cdea5..76e99b49 100644
--- a/sway/commands/bar/separator_symbol.c
+++ b/sway/commands/bar/separator_symbol.c
@@ -13,7 +13,7 @@ struct cmd_results *bar_cmd_separator_symbol(int argc, char **argv) {
13 } 13 }
14 free(config->current_bar->separator_symbol); 14 free(config->current_bar->separator_symbol);
15 config->current_bar->separator_symbol = strdup(argv[0]); 15 config->current_bar->separator_symbol = strdup(argv[0]);
16 wlr_log(WLR_DEBUG, "Settings separator_symbol '%s' for bar: %s", 16 sway_log(SWAY_DEBUG, "Settings separator_symbol '%s' for bar: %s",
17 config->current_bar->separator_symbol, config->current_bar->id); 17 config->current_bar->separator_symbol, config->current_bar->id);
18 return cmd_results_new(CMD_SUCCESS, NULL); 18 return cmd_results_new(CMD_SUCCESS, NULL);
19} 19}