We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 653b4cc commit 47b05eeCopy full SHA for 47b05ee
src/vcpu.rs
@@ -302,7 +302,7 @@ impl Aarch64VCpu {
302
let result = match exit_reason {
303
TrapKind::Synchronous => handle_exception_sync(&mut self.ctx),
304
TrapKind::Irq => Ok(AxVCpuExitReason::ExternalInterrupt {
305
- vector: axvisor_api::arch::fetch_irq()
+ vector: axvisor_api::arch::fetch_irq(),
306
}),
307
_ => panic!("Unhandled exception {:?}", exit_reason),
308
};
0 commit comments