Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.1.0113: compiler warning for unused variable
Problem:    Compiler warning for unused variable. (Yegappan Lakshmanan)
Solution:   Add UNUSED. (Christian Brabandt)
  • Loading branch information
brammool committed Jun 24, 2018
1 parent 3dddb09 commit 829adb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/screen.c
Expand Up @@ -6874,7 +6874,7 @@ win_redr_status_matches(
* displayed.
*/
static void
win_redr_status(win_T *wp, int ignore_pum)
win_redr_status(win_T *wp, int ignore_pum UNUSED)
{
int row;
char_u *p;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -789,6 +789,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
113,
/**/
112,
/**/
Expand Down

0 comments on commit 829adb7

Please sign in to comment.