diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-24 16:27:46 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-24 16:27:46 +0100 |
commit | 091806d6f0f0481b88daa7d3a24006e54c25cd6f (patch) | |
tree | ed1848741ac3469d35d35457ee7a809a434752f3 | |
parent | 9e79ccbe9ce6fce18939c7ac2e5ad059a3bd1951 (diff) | |
download | vim-git-091806d6f0f0481b88daa7d3a24006e54c25cd6f.tar.gz |
patch 8.1.0808: MS-Windows: build error with GUIv8.1.0808
Problem: MS-Windows: build error with GUI.
Solution: Remove "static".
-rw-r--r-- | src/gui_w32.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 197c8f4d1..c5e58790d 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -3552,7 +3552,7 @@ convert_filterW(char_u *s) * initdir - directory in which to open the browser (NULL = current dir) * filter - Filter for matched files to choose from. */ - static char_u * + char_u * gui_mch_browse( int saving, char_u *title, diff --git a/src/version.c b/src/version.c index da4b43c77..da248974b 100644 --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 808, +/**/ 807, /**/ 806, |