From: Bram Moolenaar Date: Sun, 12 Apr 2020 12:50:26 +0000 (+0200) Subject: patch 8.2.0553: error for unused argument X-Git-Tag: v8.2.0553 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd630becc8849bf4647f04eeb02a4883bf46140e;p=vim patch 8.2.0553: error for unused argument Problem: Error for unused argument. Solution: Add UNUSED. --- diff --git a/src/libvterm/t/harness.c b/src/libvterm/t/harness.c index 5fa4cfbca..75869d756 100644 --- a/src/libvterm/t/harness.c +++ b/src/libvterm/t/harness.c @@ -65,7 +65,7 @@ static VTermScreen *screen; static VTermEncodingInstance encoding; -static void term_output(const char *s, size_t len, void *user) +static void term_output(const char *s, size_t len, void *user UNUSED) { size_t i; diff --git a/src/version.c b/src/version.c index 2985dd0b0..a9cdd6a80 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 553, /**/ 552, /**/