Blame SOURCES/netpbm-cmuwtopbm.patch

294826
diff -up netpbm-10.61.01/converter/pbm/cmuwmtopbm.c.cmuwtopbmfix netpbm-10.61.01/converter/pbm/cmuwmtopbm.c
294826
--- netpbm-10.61.01/converter/pbm/cmuwmtopbm.c.cmuwtopbmfix	2013-01-02 18:39:57.000000000 +0100
294826
+++ netpbm-10.61.01/converter/pbm/cmuwmtopbm.c	2013-01-03 05:41:36.024984241 +0100
294826
@@ -18,7 +18,7 @@
294826
    This program does not check the pad bits at the end of each row.
294826
 */
294826
 
294826
-
294826
+#include <stdint.h>
294826
 #include "pbm.h"
294826
 
294826
 /*--------------------------
294826
@@ -42,7 +42,7 @@ readCmuwmHeader(FILE *         const ifP
294826
         "CMU window manager header EOF / read error";
294826
     uint32_t const cmuwmMagic = 0xf10040bb;
294826
 
294826
-    long l;
294826
+    uint32_t l;
294826
     short s;
294826
     int rc;
294826