2015-08-11 08:11:35 +00:00
|
|
|
diff --git a/converter/pbm/cmuwmtopbm.c b/converter/pbm/cmuwmtopbm.c
|
|
|
|
index ccf8cfc..1f9bc6c 100644
|
|
|
|
--- a/converter/pbm/cmuwmtopbm.c
|
|
|
|
+++ b/converter/pbm/cmuwmtopbm.c
|
2010-05-03 14:05:02 +00:00
|
|
|
@@ -18,7 +18,7 @@
|
|
|
|
This program does not check the pad bits at the end of each row.
|
|
|
|
*/
|
|
|
|
|
|
|
|
-
|
|
|
|
+#include <stdint.h>
|
|
|
|
#include "pbm.h"
|
|
|
|
|
2013-01-03 05:22:57 +00:00
|
|
|
/*--------------------------
|
2015-08-11 08:11:35 +00:00
|
|
|
@@ -42,7 +42,7 @@ readCmuwmHeader(FILE * const ifP,
|
2010-05-03 14:05:02 +00:00
|
|
|
"CMU window manager header EOF / read error";
|
2013-01-03 05:22:57 +00:00
|
|
|
uint32_t const cmuwmMagic = 0xf10040bb;
|
2010-05-03 14:05:02 +00:00
|
|
|
|
|
|
|
- long l;
|
|
|
|
+ uint32_t l;
|
|
|
|
short s;
|
|
|
|
int rc;
|
|
|
|
|