summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c')
-rw-r--r--Build/source/texk/dvi2tty/dvi2tty-5.3.4/dvistuff.c2
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)