Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Commit 7963376

Browse files
committed
Ooops, fix this too
1 parent fdee153 commit 7963376

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/filesystem.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ use core::default::Default;
33
use core::marker;
44
use core::mem;
55

6+
use bitflags;
7+
68
use crate::bindings;
79
use crate::c_types;
810
use crate::error;
@@ -24,7 +26,7 @@ pub trait FileSystem {
2426
const FLAGS: FileSystemFlags;
2527
}
2628

27-
bitflags! {
29+
bitflags::bitflags! {
2830
pub struct FileSystemFlags: c_types::c_int {
2931
const FS_REQUIRES_DEV = bindings::FS_REQUIRES_DEV as c_types::c_int;
3032
const FS_BINARY_MOUNTDATA = bindings::FS_BINARY_MOUNTDATA as c_types::c_int;

0 commit comments

Comments
 (0)