From d505c8220ddb62a3489f1880a2ff37a3ddd9954b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 19 Oct 2022 19:24:48 +0100 Subject: [PATCH] patch 9.0.0800: compiler complains about repeated typedef Problem: Compiler complains about repeated typedef. Solution: Remove one typedef. --- src/sound.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sound.c b/src/sound.c index f0f5ab0d11..17ff78ba3a 100644 --- a/src/sound.c +++ b/src/sound.c @@ -17,7 +17,7 @@ static long sound_id = 0; -typedef struct soundcb_S soundcb_T; +// soundcb_T is typdef'ed in proto/sound.pro struct soundcb_S { callback_T snd_callback; diff --git a/src/version.c b/src/version.c index c068ac3fed..3ce579f024 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 800, /**/ 799, /**/