diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-18 06:21:39 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-18 06:21:39 +0000 |
commit | 619f14f6c7d6fcc6fd505f712dbddc51725a7e9f (patch) | |
tree | f1add9eb5e95ad7a4ac82195ca3014a860607538 /Build/source/texk/ttf2pk2/pklib.c | |
parent | 5cfb31b17c6d794f6e75d71a4f971af2a320e350 (diff) |
ttf2pk(2): Use binary mode for output files
Change function params to int to avoid MSVC warnings without casting
Drop XCDECL (from W32TeX)
git-svn-id: svn://tug.org/texlive/trunk@27080 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/ttf2pk2/pklib.c')
-rw-r--r-- | Build/source/texk/ttf2pk2/pklib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/ttf2pk2/pklib.c b/Build/source/texk/ttf2pk2/pklib.c index 5b5b380c277..25b1c5c956c 100644 --- a/Build/source/texk/ttf2pk2/pklib.c +++ b/Build/source/texk/ttf2pk2/pklib.c @@ -652,7 +652,7 @@ pk_bm_cvt(void) static void -putshort(short w) +putshort(int w) { putc(w >> 8, pk_file); putc(w, pk_file); |