Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
memN0ps committed Dec 28, 2023
1 parent 2323c48 commit cbe1021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypervisor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl Hypervisor {

processor.virtualize_cpu()?;

core::mem::drop(executor);
drop(executor);
}

Ok(())
Expand All @@ -95,7 +95,7 @@ impl Hypervisor {

processor.devirtualize_cpu()?;

core::mem::drop(executor);
drop(executor);
}

Ok(())
Expand Down

0 comments on commit cbe1021

Please sign in to comment.