From 978a930d9cf655fb18cfec228cee0c58d9a82a4f Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Wed, 22 Dec 2021 08:39:33 -0700 Subject: Fix: Build issue on 32 bit archs The cast to size_t leads to a build issue on 32 bit archs. cursor_delim_type_utf8 expects an int so an additional cast to size_t is not required. Reported by user frispete on devtalk. --- source/blender/blenlib/intern/string_cursor_utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern') diff --git a/source/blender/blenlib/intern/string_cursor_utf8.c b/source/blender/blenlib/intern/string_cursor_utf8.c index eb49572f06c..5e2a0b85814 100644 --- a/source/blender/blenlib/intern/string_cursor_utf8.c +++ b/source/blender/blenlib/intern/string_cursor_utf8.c @@ -199,7 +199,7 @@ void BLI_str_cursor_step_utf8(const char *str, const int pos_prev = *pos; if (BLI_str_cursor_step_prev_utf8(str, maxlen, pos)) { if ((jump != STRCUR_JUMP_ALL) && - (delim_type != cursor_delim_type_utf8(str, maxlen, (size_t)*pos))) { + (delim_type != cursor_delim_type_utf8(str, maxlen, *pos))) { /* left only: compensate for index/change in direction */ if ((pos_orig - (*pos)) >= 1) { *pos = pos_prev; -- cgit v1.2.3