Merge pull request #1 from Ironholds/Ironholds-patch-1

Remove unused variable
This commit is contained in:
Oliver Keyes
2017-04-18 21:53:24 -07:00
committed by GitHub

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);