diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-10-21 21:01:59 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-10-21 21:01:59 +0200 |
commit | 4ce5fe4c87820c7d22964d6e91d7b07e96640e6f (patch) | |
tree | 900ca0ee352311d36d485c2dd12a9e828e274ab3 /src/version.c | |
parent | c58f5456e5c5f21193e960cecc434e367ef1281e (diff) | |
download | vim-git-4ce5fe4c87820c7d22964d6e91d7b07e96640e6f.tar.gz |
patch 8.2.1883: compiler warnings when using Pythonv8.2.1883
Problem: Compiler warnings when using Python.
Solution: Adjust PyCFunction to also have the second argument. Use "int"
return type for some functions. Insert "(void *)" to get rid of
the remaining warnings.
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 fde646d57..720dc3a83 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 */ /**/ + 1883, +/**/ 1882, /**/ 1881, |