1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

fix a clippy warning

This commit is contained in:
Sylvestre Ledru 2021-07-31 10:27:51 +02:00 committed by GitHub
parent 0bbd4d4992
commit e780fba2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,9 @@ use std::os::unix::fs::OpenOptionsExt;
use std::path::Path;
#[cfg(target_os = "linux")]
use std::sync::atomic::Ordering;
use std::sync::{atomic::AtomicUsize, mpsc, Arc};
#[cfg(target_os = "linux")]
use std::sync::{atomic::AtomicUsize, Arc};
use std::sync::mpsc, Arc;
use std::thread;
use std::time;