Description: make sure to always provide a format-string
 otherwise printf()-like functions might fail to build with format-security turned on
Author: IOhannes m zmölnig
Forwarded: no
Last-Update: 2022-02-03
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- gmerlin.orig/lib/frontend_player_ncurses.c
+++ gmerlin/lib/frontend_player_ncurses.c
@@ -161,7 +161,7 @@
 
   if(status_str)
     {
-    mvwprintw(p->player_win, 2, p->win_w - 4, status_str);
+    mvwprintw(p->player_win, 2, p->win_w - 4, "%s", status_str);
     wrefresh(p->player_win);
     }
   }
