about summary refs log tree commit diff stats
path: root/src/plugins
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-10-15 00:04:57 +0100
committerJames Booth <boothj5@gmail.com>2016-10-15 00:04:57 +0100
commit33b4b79f2e055ad5831bc428a3c98eaee5530b9e (patch)
tree1140c7fc21e7547d874efc5e65c105fe650d5532 /src/plugins
parent2f888979c511c9260062dee71ba1060a23aa52d0 (diff)
downloadprofani-tty-33b4b79f2e055ad5831bc428a3c98eaee5530b9e.tar.gz
Add ch arg to win_printf_line
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/api.c b/src/plugins/api.c
index be5639dc..4073b5f5 100644
--- a/src/plugins/api.c
+++ b/src/plugins/api.c
@@ -85,7 +85,7 @@ api_cons_show_themed(const char *const group, const char *const key, const char
     char *parsed = str_replace(message, "\r\n", "\n");
     theme_item_t themeitem = plugin_themes_get(group, key, def);
     ProfWin *console = wins_get_console();
-    win_printf_line(console, themeitem, "%s", parsed);
+    win_printf_line(console, themeitem, '-', "%s", parsed);
 
     free(parsed);