# HG changeset patch # User Bram Moolenaar # Date 1539549905 -7200 # Node ID 9c030bc201a649a6a589965875c2f24480ce5e40 # Parent 15577c6db76638af3026636f4a26dc4af04d3f19 patch 8.1.0477: tiny build fails commit https://github.com/vim/vim/commit/d95c3c253cfc026696219a290c580e554e956872 Author: Bram Moolenaar Date: Sun Oct 14 22:38:09 2018 +0200 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -793,6 +793,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 477, +/**/ 476, /**/ 475,