diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-21 23:09:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-21 23:09:04 +0200 |
commit | bd67aac279adf3a1cfa11557229b44e4c2c3dcda (patch) | |
tree | b00100bb2bd1c42ce594c3d6804c618afae3450c /src/ui.c | |
parent | 1e82a784ace6d2c4dce594dd6156bcb0028bba9e (diff) | |
download | vim-git-bd67aac279adf3a1cfa11557229b44e4c2c3dcda.tar.gz |
patch 8.1.2064: MS-Windows: compiler warnings for unused argumentsv8.1.2064
Problem: MS-Windows: compiler warnings for unused arguments.
Solution: Add UNUSED. (Yegappan Lakshmanan, closes #4963)
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -649,7 +649,7 @@ ui_new_shellsize(void) * Return FAIL when not possible. */ int -ui_get_winpos(int *x, int *y, varnumber_T timeout) +ui_get_winpos(int *x, int *y, varnumber_T timeout UNUSED) { # ifdef FEAT_GUI if (gui.in_use) |