summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-19 19:24:48 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-19 19:24:48 +0100
commitd505c8220ddb62a3489f1880a2ff37a3ddd9954b (patch)
tree12fe6e8c2227bbb3e94c8831eb0c26aad552fdab /src
parentd0fbb41eaa737dd64877c8cebaff19854e2d504f (diff)
downloadvim-git-d505c8220ddb62a3489f1880a2ff37a3ddd9954b.tar.gz
patch 9.0.0800: compiler complains about repeated typedefv9.0.0800
Problem: Compiler complains about repeated typedef. Solution: Remove one typedef.
Diffstat (limited to 'src')
-rw-r--r--src/sound.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c
index f0f5ab0d1..17ff78ba3 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 c068ac3fe..3ce579f02 100644
--- 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,