From 358448617971310fa873077bec45fd5a47979a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Peixoto?= Date: Sat, 14 Sep 2024 19:33:14 +0100 Subject: [PATCH] fix(configs/example): remove semicolons to comply with ISO C standard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Peixoto --- configs/example/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/example/config.c b/configs/example/config.c index ed2ffdbc..f82add5b 100644 --- a/configs/example/config.c +++ b/configs/example/config.c @@ -10,8 +10,8 @@ * Declare VM images using the VM_IMAGE macro, passing an identifier and the * path for the image. */ -VM_IMAGE(vm1, "/path/to/vm1/binary.bin"); -VM_IMAGE(vm2, "/path/to/vm2/binary.bin"); +VM_IMAGE(vm1, "/path/to/vm1/binary.bin") +VM_IMAGE(vm2, "/path/to/vm2/binary.bin") /** * The configuration itself is a struct config that MUST be named config.