Remove unused variable

What it says on the tin!
This commit is contained in:
Oliver Keyes
2017-04-18 21:25:00 -07:00
committed by GitHub
parent e0c82b5edb
commit 35821f975e

View File

@@ -227,7 +227,6 @@ typedef enum casing_option {
char *utf8_case(const char *s, casing_option_t casing, utf8proc_option_t options) {
ssize_t len = (ssize_t)strlen(s);
utf8proc_uint8_t *str = (utf8proc_uint8_t *)s;
utf8proc_uint8_t *dest = NULL;
utf8proc_ssize_t result;
result = utf8proc_decompose(str, len, NULL, 0, options);