Always use string format in win_printf

This commit is contained in:
James Booth
2016-10-12 00:40:41 +01:00
parent 97898ee082
commit 24f0dc2734
9 changed files with 63 additions and 63 deletions

View File

@@ -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(console, '-', 0, NULL, 0, themeitem, "", parsed);
win_printf(console, '-', 0, NULL, 0, themeitem, "", "%s", parsed);
free(parsed);
@@ -368,7 +368,7 @@ api_win_show(const char *tag, const char *line)
}
ProfWin *window = (ProfWin*)pluginwin;
win_printf(window, '!', 0, NULL, 0, 0, "", line);
win_printf(window, '!', 0, NULL, 0, 0, "", "%s", line);
return 1;
}
@@ -393,7 +393,7 @@ api_win_show_themed(const char *tag, const char *const group, const char *const
theme_item_t themeitem = plugin_themes_get(group, key, def);
ProfWin *window = (ProfWin*)pluginwin;
win_printf(window, '!', 0, NULL, 0, themeitem, "", line);
win_printf(window, '!', 0, NULL, 0, themeitem, "", "%s", line);
return 1;
}