diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-01-26 13:37:49 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-01-26 13:37:49 +0000 |
commit | dba36815c3521f281d4962346b0b9dbdb7e787e7 (patch) | |
tree | 519d4b65c05c687929af17ad581997eb170d1230 /Build/source/texk/dvi2tty/dvi2tty-5.3.4 | |
parent | ecf810bdf23cee1b69f6bac4936e33555721bc60 (diff) |
Fix dvi2tty 'make check' problem
git-svn-id: svn://tug.org/texlive/trunk@21175 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvi2tty/dvi2tty-5.3.4')
-rw-r--r-- | Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c b/Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c index 4e37a1f30f7..901877d158a 100644 --- a/Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c +++ b/Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c @@ -441,7 +441,7 @@ void dopage(void) while ((opcode = (int) get1()) != EOP) { /* process page until eop */ if (opcode <= LASTCHAR) - dochar((char) opcode); + dochar((unsigned char) opcode); else if ((opcode >= FONT_00) && (opcode <= FONT_63)) setfont((long) opcode - FONT_00); else if (opcode > POST_POST) |