From: Aki Tuomi Date: Tue, 1 Sep 2020 08:56:42 +0000 (+0300) Subject: lib-fts: test-fts-tokenizer - Change test_chars to unsigned char X-Git-Tag: 2.3.13~89 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5af22d2c8ad32a444240104f529e1496ae72f2a;p=thirdparty%2Fdovecot%2Fcore.git lib-fts: test-fts-tokenizer - Change test_chars to unsigned char --- diff --git a/src/lib-fts/test-fts-tokenizer.c b/src/lib-fts/test-fts-tokenizer.c index fcd4c6a329..da04aa53b7 100644 --- a/src/lib-fts/test-fts-tokenizer.c +++ b/src/lib-fts/test-fts-tokenizer.c @@ -475,7 +475,7 @@ static void test_fts_tokenizer_address_maxlen(void) static void test_fts_tokenizer_random(void) { - const char test_chars[] = { 0, ' ', '.', 'a', 'b', 'c', '-', '@', '\xC3', '\xA4' }; + const unsigned char test_chars[] = { 0, ' ', '.', 'a', 'b', 'c', '-', '@', '\xC3', '\xA4' }; const char *const settings[] = {"algorithm", "simple", NULL}; const char *const email_settings[] = {"maxlen", "9", NULL}; unsigned int i;