From f9ca08e95ff5b66a02c75334264dd86508b2a453 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 1 Jun 2020 18:56:03 +0200 Subject: [PATCH] patch 8.2.0879: compiler warning for unused function argument Problem: Compiler warning for unused function argument. Solution: Add UNUSED. --- src/search.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index 802718d184..e0b0f9b455 100644 --- a/src/search.c +++ b/src/search.c @@ -3170,7 +3170,7 @@ update_search_stat( searchstat_T *stat, int recompute, int maxcount, - long timeout) + long timeout UNUSED) { int save_ws = p_ws; int wraparound = FALSE; diff --git a/src/version.c b/src/version.c index 4a271403a5..80be6d03b3 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 879, /**/ 878, /**/