From b837593c3f9936e12db86dc9d87df4b8759ba70e Mon Sep 17 00:00:00 2001 From: Miguel Silva Date: Mon, 25 Mar 2024 14:42:56 +0000 Subject: [PATCH] fix: Add an entry to vmlist parameter in null config With the changes to the type of vmlist, the system fails to build to generate the headers without adding an entry to the new vmlist array. Signed-off-by: Miguel Silva --- configs/null/config.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/null/config.c b/configs/null/config.c index 3b73fac76..736217148 100644 --- a/configs/null/config.c +++ b/configs/null/config.c @@ -20,4 +20,6 @@ struct config config = { */ .vmlist_size = 1, + .vmlist = (struct vm_config[]){ {.entry = 0 } }, + };