From: Bram Moolenaar Date: Thu, 8 Dec 2022 16:10:01 +0000 (+0000) Subject: patch 9.0.1033: tiny build fails because of conflicting typedef X-Git-Tag: v9.0.1033 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83c43ab319f4c4a9d03c65648b4f0df4298a7f93;p=vim patch 9.0.1033: tiny build fails because of conflicting typedef Problem: Tiny build fails because of conflicting typedef. Solution: Remove one typedef. --- diff --git a/src/structs.h b/src/structs.h index f7ae16b75..0fb57f46d 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 a209733af..fa6535208 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 */ +/**/ + 1033, /**/ 1032, /**/