about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorStefan Lankes <slankes@eonerc.rwth-aachen.de>2020-03-30 07:17:00 +0200
committerStefan Lankes <slankes@eonerc.rwth-aachen.de>2020-03-30 07:17:00 +0200
commit6c80bdb388618eb574149a18e2ae7d1c34f6f762 (patch)
treedc47125375c8d5ac9c1524db4535172928818218 /src/libstd/sys
parent412083469e717bb45299570841194bc45b019792 (diff)
downloadrust-6c80bdb388618eb574149a18e2ae7d1c34f6f762.tar.gz
rust-6c80bdb388618eb574149a18e2ae7d1c34f6f762.zip
reorder imports to pass the format check
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/hermit/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/hermit/fs.rs b/src/libstd/sys/hermit/fs.rs
index 973ee768d7b..287a0390667 100644
--- a/src/libstd/sys/hermit/fs.rs
+++ b/src/libstd/sys/hermit/fs.rs
@@ -6,7 +6,7 @@ use crate::io::{IoSlice, IoSliceMut, SeekFrom};
 use crate::path::{Path, PathBuf};
 use crate::sys::cvt;
 use crate::sys::hermit::abi;
-use crate::sys::hermit::abi::{O_RDONLY, O_WRONLY, O_RDWR,O_CREAT, O_EXCL, O_TRUNC, O_APPEND};
+use crate::sys::hermit::abi::{O_APPEND, O_CREAT, O_EXCL, O_RDONLY, O_RDWR, O_TRUNC, O_WRONLY};
 use crate::sys::hermit::fd::FileDesc;
 use crate::sys::time::SystemTime;
 use crate::sys::{unsupported, Void};