diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-05-08 20:09:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-05-08 20:09:24 +0200 |
commit | 918b08957c51ae079f8f456198f8a1869a3d2a4c (patch) | |
tree | 0ddfa45597c562fe4d6dde30330533408d185b35 /src/version.c | |
parent | 24f720998f852dd1ba861ec67d56625a507b915e (diff) | |
download | vim-git-8.2.2845.tar.gz |
patch 8.2.2845: MS-Windows: warning for signed/unsigned comparisonv8.2.2845
Problem: MS-Windows: warning for signed/unsigned comparison.
Solution: Add type cast.
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 68f05af9f..e8827c460 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2845, +/**/ 2844, /**/ 2843, |