summaryrefslogtreecommitdiffstats
path: root/src/dosinst.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-06-08 15:14:09 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-08 15:14:09 +0100
commitebb01bdb273216607f60faddf791a1b378cccfa8 (patch)
tree479643307e2e9c253971a38ac0f8fa2aa62d3cc6 /src/dosinst.c
parent68093d36bf87caf2c2ba7404c06d14ef8416c27a (diff)
patch 8.2.5069: various warnings from clang on MS-Windowsv8.2.5069
Problem: Various warnings from clang on MS-Windows. Solution: Fix the code to avoid the warnings. (Yegappan Lakshmanan, closes #10538)
Diffstat (limited to 'src/dosinst.c')
-rw-r--r--src/dosinst.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dosinst.c b/src/dosinst.c
index e77152fddd..23cf2d31f8 100644
--- a/src/dosinst.c
+++ b/src/dosinst.c
@@ -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);
}