summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-04-03 09:16:17 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-04-03 09:16:17 +0000
commitd6cccf625bccc9f3ca9dd20213a6e8214416efbb (patch)
treea584879d7a77d3ddccea025ab1f3501feaa71731 /Build
parentd50f7c31b156ee8553059a40e22f92dcb4db4e01 (diff)
texk/ps2pk: Avoid compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@40223 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/ps2pk/ChangeLog4
-rw-r--r--Build/source/texk/ps2pk/arith.h2
-rw-r--r--Build/source/texk/ps2pk/pk2bm.c1
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>