:rotating_lights: Small lint fixes

This commit is contained in:
François Autin
2023-03-27 11:35:04 +02:00
parent 939e23883e
commit ba8e36ea90
2 changed files with 11 additions and 6 deletions

View File

@ -17,6 +17,7 @@ use kernel::system::System;
use simulator::machine::Machine;
fn main() {
let machine = Machine::init_machine();
let mut machine = Machine::init_machine();
let system = System::default();
machine.run()
}