Description: fix "format not a string literal" compile error [-Werror=format-security]
Author: Florian Schlichting <fsfs@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=94692

--- a/bidi.c
+++ b/bidi.c
@@ -1234,7 +1234,7 @@
     }
     pszTypes[ich] = 0;
 
-    fprintf(f, pszTypes);
+    fprintf(f, "%s", pszTypes);
 }
 
 void ShowTypes(FILE* f, int * types, int cch) {
@@ -1245,7 +1245,7 @@
     }
     pszTypes[ich] = 0;
 
-    fprintf(f, pszTypes);
+    fprintf(f, "%s", pszTypes);
 }
 
 void ShowLevels(FILE* f, int * levels, int cch) {
@@ -1256,7 +1256,7 @@
     }
     pszLevel[ich] = 0;
 
-    fprintf(f, pszLevel);
+    fprintf(f, "%s", pszLevel);
 }
 
 void usage(char *s) {
