1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-23 04:48:47 +00:00

Another warning fix for GCC from Thomas Klausner.

This commit is contained in:
nicm 2023-07-03 08:37:14 +00:00
parent a2a02fd7d7
commit e79fb214f8

2
utf8.c
View File

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