diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-13 21:22:12 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-13 21:22:12 +0100 |
commit | 18442cbcc0d335a8ea6947e94eee9a2ab9552690 (patch) | |
tree | ee2900bcf88d4f9da2ac3cfa8244a355e6a27aac /src/version.c | |
parent | 943e9639a9ecb08bdec78ae6695c917bca6210b9 (diff) | |
download | vim-git-8.1.0912.tar.gz |
patch 8.1.0912: MS-Windows: warning for signed/unsignedv8.1.0912
Problem: MS-Windows: warning for signed/unsigned.
Solution: Add type cast. (Nobuhiro Takasaki, closes #3945)
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 88960bafd..343270cc0 100644 --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 912, +/**/ 911, /**/ 910, |