0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.5069: various warnings from clang on MS-Windows

Problem:    Various warnings from clang on MS-Windows.
Solution:   Fix the code to avoid the warnings. (Yegappan Lakshmanan,
            closes #10538)
This commit is contained in:
Yegappan Lakshmanan
2022-06-08 15:14:09 +01:00
committed by Bram Moolenaar
parent 68093d36bf
commit ebb01bdb27
6 changed files with 9 additions and 8 deletions

View File

@@ -211,8 +211,8 @@ check_unpack(void)
{
printf("ERROR: Cannot find filetype.vim in \"%s\"\n", installdir);
printf("It looks like you did not unpack the runtime archive.\n");
printf("You must unpack the runtime archive \"vim%srt.zip\" before installing.\n",
VIM_VERSION_NODOT + 3);
printf("You must unpack the runtime archive \"%srt.zip\" before installing.\n",
VIM_VERSION_NODOT);
myexit(1);
}