1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-10-06 20:03:46 -04:00

Added back in remove extra variable

This commit is contained in:
James Booth 2013-01-05 21:42:41 +00:00
parent d24c57036c
commit 1e45596373

View File

@ -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];
}