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 <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Yasuhiro Matsumoto
2026-03-15 15:35:01 +00:00
committed by Christian Brabandt
parent ca62f84503
commit a72926fa51
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -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);
+2
View File
@@ -734,6 +734,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
172,
/**/
171,
/**/