diff options
author | 2023-12-06 07:05:45 +1100 | |
---|---|---|
committer | 2023-12-06 07:05:45 +1100 | |
commit | 466c450cb37c9077e799fe9f59137096fd35e8f6 (patch) | |
tree | 2d62bb8ecb8012a9f0d4eb75da3f4d65192c5b53 /3rdparty/utf8proc/test/tests.c | |
parent | 12590d6ad8873bb8d8c217b67311290653d948d2 (diff) |
3rdparty/utf8proc: Updated to 2.9.0.
Diffstat (limited to '3rdparty/utf8proc/test/tests.c')
-rw-r--r-- | 3rdparty/utf8proc/test/tests.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/3rdparty/utf8proc/test/tests.c b/3rdparty/utf8proc/test/tests.c index 629edfff373..68b21e7f02a 100644 --- a/3rdparty/utf8proc/test/tests.c +++ b/3rdparty/utf8proc/test/tests.c @@ -29,7 +29,8 @@ size_t skipspaces(const unsigned char *buf, size_t i) in dest, returning the number of bytes read from buf */ size_t encode(unsigned char *dest, const unsigned char *buf) { - size_t i = 0, j, d = 0; + size_t i = 0, j; + utf8proc_ssize_t d = 0; for (;;) { int c; i = skipspaces(buf, i); |