Author: Joachim Reichel <reichel@debian.org>
Description: Fix an error caused by -Wformat-security.
--- a/src/zimpllib.c
+++ b/src/zimpllib.c
@@ -89,7 +89,7 @@ void zpl_print_banner(FILE* fp, Bool wit
       fprintf(fp, banner, VERSION);
 
       if (with_license || verbose > VERB_NORMAL)
-         fprintf(fp, license); 
+         fprintf(fp, "%s", license); 
 
       fputc('\n', fp);
    }
