mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-06 06:02:20 +00:00
fix "obsolete use of designated initializer without '='"
According in C99 manual 6.7.8,'=' is required. Signed-off-by: huihuang.shi <huihuang.shi@intel.com>
This commit is contained in:
parent
67dfec8799
commit
64d2efcfaf
@ -76,7 +76,7 @@ static const struct vm_exit_dispatch dispatch_table[] = {
|
||||
.handler = unhandled_vmexit_handler},
|
||||
[VMX_EXIT_REASON_VMCALL] = {
|
||||
.handler = vmcall_vmexit_handler},
|
||||
[VMX_EXIT_REASON_VMCLEAR] {
|
||||
[VMX_EXIT_REASON_VMCLEAR] = {
|
||||
.handler = unhandled_vmexit_handler},
|
||||
[VMX_EXIT_REASON_VMLAUNCH] = {
|
||||
.handler = unhandled_vmexit_handler},
|
||||
|
Loading…
Reference in New Issue
Block a user