Blame SOURCES/netpbm-cmuwtopbm.patch

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