From: Yasuhiro Matsumoto Date: Sun, 15 Mar 2026 15:35:01 +0000 (+0000) Subject: patch 9.2.0172: Missing semicolon in os_mac_conv.c X-Git-Tag: v9.2.0172^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a72926fa5188f3f91e439bdd539bb92d8028969c;p=thirdparty%2Fvim.git patch 9.2.0172: Missing semicolon in os_mac_conv.c Problem: Missing semicolon in os_mac_conv.c (after v9.2.0168) Solution: Add it (Yasuhiro Matsumoto). The missing semicolon was introduced in patch 9.2.0168 (b00f441e6), which breaks the macOS build. closes: #19695 Signed-off-by: Yasuhiro Matsumoto Signed-off-by: Christian Brabandt --- diff --git a/src/os_mac_conv.c b/src/os_mac_conv.c index 8cfce972a5..7327cba9df 100644 --- a/src/os_mac_conv.c +++ b/src/os_mac_conv.c @@ -354,7 +354,7 @@ mac_utf16_to_enc( } else { - int len = utf8_len + int len = utf8_len; result = string_convert(&conv, utf8_str, &len); utf8_len = len; vim_free(utf8_str); diff --git a/src/version.c b/src/version.c index 611c679443..bac40781c8 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 172, /**/ 171, /**/