From: Bram Moolenaar Date: Mon, 1 Jun 2020 16:56:03 +0000 (+0200) Subject: patch 8.2.0879: compiler warning for unused function argument X-Git-Tag: v8.2.0879 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9ca08e95ff5b66a02c75334264dd86508b2a453;p=thirdparty%2Fvim.git patch 8.2.0879: compiler warning for unused function argument Problem: Compiler warning for unused function argument. Solution: Add UNUSED. --- 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, /**/