From ea263d099983e96efba408af6827e0cde9b69225 Mon Sep 17 00:00:00 2001 From: bakkeby Date: Thu, 18 Jul 2024 10:00:53 +0200 Subject: [PATCH] highlight: correct declared utf8len signature --- drw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drw.h b/drw.h index 7936e8e..af54557 100644 --- a/drw.h +++ b/drw.h @@ -69,7 +69,7 @@ void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned in #endif // PANGO_PATCH #if HIGHLIGHT_PATCH -size_t utf8len(const char *c); +int utf8len(const char *c); #endif // HIGHLIGHT_PATCH /* Colorscheme abstraction */