diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-06-08 15:14:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-08 15:14:09 +0100 |
commit | ebb01bdb273216607f60faddf791a1b378cccfa8 (patch) | |
tree | 479643307e2e9c253971a38ac0f8fa2aa62d3cc6 /src/os_mswin.c | |
parent | 68093d36bf87caf2c2ba7404c06d14ef8416c27a (diff) | |
download | vim-git-ebb01bdb273216607f60faddf791a1b378cccfa8.tar.gz |
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/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index 6310a1aaf..b6e8d71e4 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -560,7 +560,7 @@ resolve_appexeclink(char_u *fname) && idx < (int)rb->AppExecLinkReparseBuffer.StringCount && idx != 2; ) { - if ((*p++ == L'\0')) + if (*p++ == L'\0') ++idx; } |