Author: Joachim Reichel <reichel@debian.org>
Description: Fix sprintf() warnings.
Index: zimpl-3.3.6/src/zimpl/ratlpstore.c
===================================================================
--- zimpl-3.3.6.orig/src/zimpl/ratlpstore.c
+++ zimpl-3.3.6/src/zimpl/ratlpstore.c
@@ -1932,7 +1932,7 @@ void lps_makename(
    const char* name,
    int         no)
 {
-   char  temp[9];
+   char  temp[12]; /* 9 is sufficient (see assertions below), use 12 to avoid compiler warnings */
    int   len;
    int   nlen;
 
