changeset 30932:e1e21033c859 v9.0.0800

patch 9.0.0800: compiler complains about repeated typedef Commit: https://github.com/vim/vim/commit/d505c8220ddb62a3489f1880a2ff37a3ddd9954b Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 19 19:24:48 2022 +0100 patch 9.0.0800: compiler complains about repeated typedef Problem: Compiler complains about repeated typedef. Solution: Remove one typedef.
author Bram Moolenaar <Bram@vim.org>
date Wed, 19 Oct 2022 20:30:04 +0200
parents 7be47c0470b5
children 208ea15f4c23
files src/sound.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    800,
+/**/
     799,
 /**/
     798,