diff --git a/vt.c b/vt.c index 54fd643c..91f00e6f 100644 --- a/vt.c +++ b/vt.c @@ -753,7 +753,7 @@ action_utf8_print(struct terminal *term, char32_t wc) /* Look for existing combining chain */ while (true) { - if (collision_count > 128) { + if (unlikely(collision_count > 128)) { static bool have_warned = false; if (!have_warned) { have_warned = true;