From f0fe938b9073c9d482a59ffb63a064ec21cf6923 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Mon, 9 Aug 2004 23:58:16 +0000 Subject: [PATCH] Fixed warnings reported by Microsoft C++. --- src/conio/ansi_cio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conio/ansi_cio.c b/src/conio/ansi_cio.c index f239a446c0..56a00fc0c3 100644 --- a/src/conio/ansi_cio.c +++ b/src/conio/ansi_cio.c @@ -423,7 +423,7 @@ int ansi_putch(int ch) struct text_info ti; WORD sch; int i; - char buf[2]; + unsigned char buf[2]; buf[0]=ch; buf[1]=ansi_curr_attr>>8; -- GitLab