commit | bd67aac279adf3a1cfa11557229b44e4c2c3dcda | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Sep 21 23:09:04 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Sep 21 23:09:04 2019 +0200 |
tree | b00100bb2bd1c42ce594c3d6804c618afae3450c | |
parent | 1e82a784ace6d2c4dce594dd6156bcb0028bba9e [diff] [blame] |
patch 8.1.2064: MS-Windows: compiler warnings for unused arguments Problem: MS-Windows: compiler warnings for unused arguments. Solution: Add UNUSED. (Yegappan Lakshmanan, closes #4963)
diff --git a/src/ui.c b/src/ui.c index d3a655c..0170df7 100644 --- a/src/ui.c +++ b/src/ui.c
@@ -649,7 +649,7 @@ * 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)