From 9c666d31f47e1731367197c931d43c0f71e54cc6 Mon Sep 17 00:00:00 2001 From: weisd Date: Wed, 26 Mar 2025 15:51:06 +0800 Subject: [PATCH] fix linux build error --- ecstore/src/utils/os/linux.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ecstore/src/utils/os/linux.rs b/ecstore/src/utils/os/linux.rs index 27b73f867..ca64f8186 100644 --- a/ecstore/src/utils/os/linux.rs +++ b/ecstore/src/utils/os/linux.rs @@ -4,10 +4,8 @@ use std::fs::File; use std::io::{self, BufRead, Error, ErrorKind}; use std::path::Path; -use crate::{ - disk::Info, - error::{Error as e_Error, Result}, -}; +use crate::disk::Info; +use common::error::{Error as e_Error, Result}; use super::IOStats;