From: Bram Moolenaar Date: Sun, 14 Oct 2018 20:38:09 +0000 (+0200) Subject: patch 8.1.0477: tiny build fails X-Git-Tag: v8.1.0477 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d95c3c253cfc026696219a290c580e554e956872;p=vim patch 8.1.0477: tiny build fails Problem: Tiny build fails. Solution: Add a dummy declaration for funccal_entry_T. --- diff --git a/src/structs.h b/src/structs.h index ebd94c361..560ce42b4 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1445,6 +1445,10 @@ typedef struct { int dummy; } funcdict_T; +typedef struct +{ + int dummy; +} funccal_entry_T; #endif struct partial_S diff --git a/src/version.c b/src/version.c index 56addcdbb..1268cdcc7 100644 --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 477, /**/ 476, /**/