patch 8.2.4289: warnings reported by MSVC
Problem: Warnings reported by MSVC.
Solution: Rename variables and other fixes. (Ken Takata, closes #9689)
diff --git a/src/cmdexpand.c b/src/cmdexpand.c
index 464dc96..b75903d 100644
--- a/src/cmdexpand.c
+++ b/src/cmdexpand.c
@@ -1993,11 +1993,11 @@
#ifdef BACKSLASH_IN_FILENAME
if (p_csl[0] != NUL && (options & WILD_IGNORE_COMPLETESLASH) == 0)
{
- int i;
+ int j;
- for (i = 0; i < *num_file; ++i)
+ for (j = 0; j < *num_file; ++j)
{
- char_u *ptr = (*file)[i];
+ char_u *ptr = (*file)[j];
while (*ptr != NUL)
{