commit | d505c8220ddb62a3489f1880a2ff37a3ddd9954b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Oct 19 19:24:48 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Oct 19 19:24:48 2022 +0100 |
tree | 12fe6e8c2227bbb3e94c8831eb0c26aad552fdab | |
parent | d0fbb41eaa737dd64877c8cebaff19854e2d504f [diff] [blame] |
patch 9.0.0800: compiler complains about repeated typedef Problem: Compiler complains about repeated typedef. Solution: Remove one typedef.
diff --git a/src/sound.c b/src/sound.c index f0f5ab0..17ff78b 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;