Skip to content

Commit

Permalink
fix(configs/example): remove semicolons to comply with ISO C standard
Browse files Browse the repository at this point in the history
Signed-off-by: João Peixoto <[email protected]>
  • Loading branch information
joaopeixoto13 committed Sep 14, 2024
1 parent 26cad4d commit 02de4a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configs/example/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 02de4a8

Please sign in to comment.