Description: fix build errors in printw
 error: format not a string literal and no format arguments [-Werror=format-security]
Author: Valentin Vidic <vvidic@debian.org>
Last-Update: 2021-09-28
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/gfs2/edit/gfs2hex.c
+++ b/gfs2/edit/gfs2hex.c
@@ -374,7 +374,7 @@
 	if (termlines) {
 		check_highlight(TRUE);
 		move(line,2);
-		printw(title);
+		printw("%s",title);
 		check_highlight(FALSE);
 	}
 	else
--- a/gfs2/edit/hexedit.c
+++ b/gfs2/edit/hexedit.c
@@ -223,10 +223,10 @@
 {
 	COLORS_HIGHLIGHT;
 	move(line,0);
-	printw(s1);
+	printw("%s",s1);
 	COLORS_NORMAL;
 	move(line,17);
-	printw(s2);
+	printw("%s",s2);
 	line++;
 }
 
