arch: x86: multiboot: add a break in default switch case

Add missing break in switch statement.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2025-06-13 07:51:34 -04:00
commit 0ca2a9ed4c

View file

@ -100,6 +100,7 @@ void z_multiboot_init(struct multiboot_info *info_pa)
break;
default:
type = X86_MEMMAP_ENTRY_UNKNOWN;
break;
}
x86_memmap[index].type = type;