diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-17 18:24:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-17 18:24:35 +0200 |
commit | b9cdb37176a163f5047e149c3b568eee9883157c (patch) | |
tree | 7d87703ffde0b3dd1ac811e1883415a168ce60bb /src/window.c | |
parent | 2b00b9b0f355421fdb49e3a15f5a62af657d1922 (diff) | |
download | vim-git-b9cdb37176a163f5047e149c3b568eee9883157c.tar.gz |
patch 8.1.1182: some function prototypes are outdatedv8.1.1182
Problem: Some function prototypes are outdated.
Solution: Update function prototypes. (Ken Takata, closes #4267)
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 4dda512af..4ca56274b 100644 --- a/src/window.c +++ b/src/window.c @@ -4302,7 +4302,7 @@ win_goto_ver( * Returns the specified window if the neighbor is not found. */ win_T * -win_horz_neighbor(tabpage_T *tp, win_T * wp, int left, long count) +win_horz_neighbor(tabpage_T *tp, win_T *wp, int left, long count) { frame_T *fr; frame_T *nfr; |