diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-30 13:22:28 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-30 13:22:28 +0200 |
commit | b47a2597e64b4c4f728433ae005cf6ff1d0dd5c1 (patch) | |
tree | d531a8751e51721caa73a1d2a7b1549c957e6337 /src/version.c | |
parent | e561a7e2fa511d643c9692d26f4cf65378fd1983 (diff) | |
download | vim-b47a2597e64b4c4f728433ae005cf6ff1d0dd5c1.zip |
patch 8.0.1014: old compiler doesn't know uint32_t
Problem: Old compiler doesn't know uint32_t. Warning for using NULL instead
of NUL.
Solution: Use UINT32_T. Use NUL instead of NULL.
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 26604fd13..8f6d26f1f 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1014, +/**/ 1013, /**/ 1012, |