diff options
-rw-r--r-- | src/gui/gui-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-chat.c b/src/gui/gui-chat.c index d596e1714..e45396acd 100644 --- a/src/gui/gui-chat.c +++ b/src/gui/gui-chat.c @@ -924,7 +924,7 @@ gui_chat_print_lines_waiting_buffer () { for (i = 0; i < num_lines; i++) { - gui_chat_printf (NULL, lines[i]); + gui_chat_printf (NULL, "%s", lines[i]); } string_free_split (lines); } |