From a2f683757449657911d130c650cb0eba5b81563b Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Tue, 10 May 2022 12:21:01 +0200 Subject: [PATCH] rustfmt --- src/machine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine.rs b/src/machine.rs index 1f1caa866118..2ecb583abb2c 100644 --- a/src/machine.rs +++ b/src/machine.rs @@ -28,7 +28,7 @@ use rustc_span::symbol::{sym, Symbol}; use rustc_target::abi::Size; use rustc_target::spec::abi::Abi; -use crate::{*, shims::posix::FileHandler}; +use crate::{shims::posix::FileHandler, *}; // Some global facts about the emulated machine. pub const PAGE_SIZE: u64 = 4 * 1024; // FIXME: adjust to target architecture