Skip to content

Commit 1d35890

Browse files
Fix avr compilation
1 parent 2d87542 commit 1d35890

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ pub struct Config {
8888

8989
bitflags::bitflags! {
9090
#[derive(Default, Clone, Copy,Debug)]
91-
pub struct MountFlags: ll::lfs_fs_flags {
92-
const DISABLE_BLOCK_COUNT_CHECK = ll::lfs_fs_flags_LFS_CFG_DISABLE_BLOCK_COUNT_CHECK;
91+
pub struct MountFlags: u32 {
92+
const DISABLE_BLOCK_COUNT_CHECK = ll::lfs_fs_flags_LFS_CFG_DISABLE_BLOCK_COUNT_CHECK as _;
9393
}
9494
}
9595

0 commit comments

Comments
 (0)