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/gui_w32.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/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index c2371f405..61b09e139 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -6720,7 +6720,7 @@ gui_mch_dialog( char_u *buttons, int dfltbutton, char_u *textfield, - int ex_cmd) + int ex_cmd UNUSED) { WORD *p, *pdlgtemplate, *pnumitems; DWORD *dwp; @@ -8517,7 +8517,7 @@ gui_mch_post_balloon(BalloonEval *beval, char_u *mesg) BalloonEval * gui_mch_create_beval_area( - void *target, /* ignored, always use s_textArea */ + void *target UNUSED, /* ignored, always use s_textArea */ char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData) |