From b4a88a0441a65a0c9411c294825a08ca703f541e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 5 Aug 2019 20:18:14 +0200 Subject: [PATCH] patch 8.1.1818: unused variable Problem: Unused variable. Solution: Remove the variable. (Mike Williams) --- src/sound.c | 1 - src/version.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sound.c b/src/sound.c index c104b0d9a..92618a9f3 100644 --- a/src/sound.c +++ b/src/sound.c @@ -228,7 +228,6 @@ sound_wndproc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { typval_T argv[3]; typval_T rettv; - int dummy; char buf[32]; vim_snprintf(buf, sizeof(buf), "close sound%06ld", diff --git a/src/version.c b/src/version.c index 287775f7e..8537df181 100644 --- a/src/version.c +++ b/src/version.c @@ -773,6 +773,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1818, /**/ 1817, /**/ -- 2.50.1