summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-12-08 16:10:01 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-08 16:10:01 +0000
commit83c43ab319f4c4a9d03c65648b4f0df4298a7f93 (patch)
treebe39b849aa20ee716d5e03e6e47dd09df03f8309
parentb9603f6498e5637e111bd1dca0eab88c8dd0f99b (diff)
patch 9.0.1033: tiny build fails because of conflicting typedefv9.0.1033
Problem: Tiny build fails because of conflicting typedef. Solution: Remove one typedef.
-rw-r--r--src/structs.h4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index f7ae16b758..0fb57f46df 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -2077,10 +2077,10 @@ typedef struct
# endif
#else
// dummy typedefs for use in function prototypes
-typedef struct
+struct ufunc_S
{
int dummy;
-} ufunc_T;
+};
typedef struct
{
int dummy;
diff --git a/src/version.c b/src/version.c
index a209733af7..fa65352086 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 */
/**/
+ 1033,
+/**/
1032,
/**/
1031,