X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/a7088bde9cd939caffd0627e2715e1865b0ec558..996c8c3b71ae7d62c5da27e40d6771f1d17c584b:/raw.c diff --git a/raw.c b/raw.c index 31c1746a..3023d95a 100644 --- a/raw.c +++ b/raw.c @@ -52,7 +52,6 @@ static void s_write (void *buf, int len) { 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;