From e79fb214f8001c309c9ae11eba5fcbbac97f1acf Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 3 Jul 2023 08:37:14 +0000 Subject: Another warning fix for GCC from Thomas Klausner. --- utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.c b/utf8.c index f93891a6..10ccf422 100644 --- a/utf8.c +++ b/utf8.c @@ -72,7 +72,7 @@ static u_int utf8_next_index; /* Get a UTF-8 item from data. */ static struct utf8_item * -utf8_item_by_data(const char *data, size_t size) +utf8_item_by_data(const u_char *data, size_t size) { struct utf8_item ui; -- cgit v1.2.3