Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/logs.c b/logs.c 2index 5e87f52..29ad433 100644 3--- a/logs.c 4+++ b/logs.c 5@@ -128,7 +128,7 @@ static void log_display(const char *mesg) { 6 // Display the message on the screen. 7 if (log_win) { 8 wclear(log_win); 9- mvwprintw(log_win, 0, 0, mesg); 10+ mvwprintw(log_win, 0, 0, "%s", mesg); 11 wnoutrefresh(log_win); 12 wrefresh(log_win); 13 }