From: ben Date: Sun, 17 Nov 2002 01:56:01 +0000 (+0000) Subject: Change a temporary buffer from unsigned chars to chars, avoiding a pointer-cast X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/e63ae276e98f0b99468fc34c3671cd3c69701ecf Change a temporary buffer from unsigned chars to chars, avoiding a pointer-cast warning. git-svn-id: svn://svn.tartarus.org/sgt/putty@2215 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/terminal.c b/terminal.c index dc2392ef..d57218a7 100644 --- a/terminal.c +++ b/terminal.c @@ -3251,12 +3251,12 @@ static void clipme(Terminal *term, pos top, pos bottom, int rect) if (DIRECT_FONT(uc)) { if (c >= ' ' && c != 0x7F) { - unsigned char buf[4]; + char buf[4]; WCHAR wbuf[4]; int rv; if (is_dbcs_leadbyte(font_codepage, (BYTE) c)) { buf[0] = c; - buf[1] = (unsigned char) ldata[top.x + 1]; + buf[1] = ldata[top.x + 1]; rv = mb_to_wc(font_codepage, 0, buf, 2, wbuf, 4); top.x++; } else {