X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/1d470ad2e5c02decf05a509b2c8c2718a3f70495..8160fbfcfe7cd5ca0b430d056c0e7c392c0f4f31:/ldisc.c?ds=sidebyside diff --git a/ldisc.c b/ldisc.c index ca5625d6..48879d8a 100644 --- a/ldisc.c +++ b/ldisc.c @@ -11,7 +11,6 @@ static void c_write (char *buf, int len) { while (len--) { int new_head = (inbuf_head + 1) & INBUF_MASK; - int c = (unsigned char) *buf; if (new_head != inbuf_reap) { inbuf[inbuf_head] = *buf++; inbuf_head = new_head;