Description: Fix compilation error [-Werror=format-security]
 Add formt argument to mvprintw() call to avoid error during compilation.
Author: Andree Leidenfrost <andree@debian.org>
Index: petris-1.0.1/main.c
===================================================================
--- a/main.c
+++ b/main.c
@@ -272,7 +272,7 @@ int show_score(POINTS points, int use_hs
 void message(char *msg)
 {
 	attrset(COLOR_PAIR(COLOR_MSG) | A_BLINK);
-	mvprintw(0,0, msg);
+	mvprintw(0,0, "%s", msg);
 	refresh();
 	sleep(3);
 }
