about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/input_win.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input_win.c b/src/input_win.c
index 7dddeba2..1ee1e414 100644
--- a/src/input_win.c
+++ b/src/input_win.c
@@ -190,7 +190,6 @@ inp_get_char(char *input, int *size)
             } else {
                 char bytes[MB_CUR_MAX];
                 size_t utf_len = wcrtomb(bytes, ch, NULL);
-                int i;
                 for (i = 0 ; i < utf_len; i++) {
                     input[(*size)++] = bytes[i];
                 }