From d528211742b333a645554f00ec1e94fa108d0558 Mon Sep 17 00:00:00 2001 From: Antonio Abbatangelo Date: Tue, 23 May 2023 15:03:52 -0400 Subject: [PATCH] core: Fix no_std lints --- xdvdfs-core/src/layout.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xdvdfs-core/src/layout.rs b/xdvdfs-core/src/layout.rs index 8f5dd7e..ed6aab3 100644 --- a/xdvdfs-core/src/layout.rs +++ b/xdvdfs-core/src/layout.rs @@ -243,7 +243,7 @@ impl DirectoryEntryDiskData { Ok(()) } - #[cfg(all(feature = "read"))] + #[cfg(feature = "read")] pub async fn read_data_all( &self, dev: &mut impl super::blockdev::BlockDeviceRead,