diff options
-rw-r--r-- | Build/source/texk/ps2pk/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/ps2pk/arith.h | 2 | ||||
-rw-r--r-- | Build/source/texk/ps2pk/pk2bm.c | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/ps2pk/ChangeLog b/Build/source/texk/ps2pk/ChangeLog index 667c2ca6932..ec4ccb7c663 100644 --- a/Build/source/texk/ps2pk/ChangeLog +++ b/Build/source/texk/ps2pk/ChangeLog @@ -1,3 +1,7 @@ +2016-04-03 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * arith.h, pk2bm.c: Avoid compiler warnings. + 2016-02-01 Karl Berry <karl@tug.org> * configure.ac diff --git a/Build/source/texk/ps2pk/arith.h b/Build/source/texk/ps2pk/arith.h index 834f776dd50..fa3e1ecd2c1 100644 --- a/Build/source/texk/ps2pk/arith.h +++ b/Build/source/texk/ps2pk/arith.h @@ -42,7 +42,7 @@ typedef struct { int32_t high; - uint32_t low; + int32_t low; } doublelong; /*END SHARED*/ diff --git a/Build/source/texk/ps2pk/pk2bm.c b/Build/source/texk/ps2pk/pk2bm.c index 715a380a115..39303dadf82 100644 --- a/Build/source/texk/ps2pk/pk2bm.c +++ b/Build/source/texk/ps2pk/pk2bm.c @@ -36,6 +36,7 @@ #include <stdio.h> #include "pkin.h" +#include "basics.h" #ifdef WIN32 #include <fcntl.h> |