diff options
Diffstat (limited to '3rdparty/utf8proc/bench/icu.c')
-rw-r--r-- | 3rdparty/utf8proc/bench/icu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/utf8proc/bench/icu.c b/3rdparty/utf8proc/bench/icu.c index 3ac3514158c..a162c32da8d 100644 --- a/3rdparty/utf8proc/bench/icu.c +++ b/3rdparty/utf8proc/bench/icu.c @@ -41,7 +41,7 @@ int main(int argc, char **argv) /* ICU's insane normalization API requires you to know the size of the destination buffer in advance, - or alternatively to repeatly try normalizing and + or alternatively to repeatedly try normalizing and double the buffer size until it succeeds. Here, I just allocate a huge destination buffer to avoid the issue. */ UChar *udest = (UChar*) malloc(10*ulen * sizeof(UChar)); |