Skip to content

Commit

Permalink
revert unnecesary change
Browse files Browse the repository at this point in the history
  • Loading branch information
unknowntpo committed Dec 19, 2024
1 parent 65dcc4d commit d1bfdba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions clients/filesystem-fuse/src/fuse_api_handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -563,8 +563,7 @@ impl<T: RawFileSystem> Filesystem for FuseApiHandle<T> {
}
}

fn fstat_to_file_attr(file_st: &FileStat, context: &FileSystemContext) -> FileAttr {
debug!("file_st: {:?}, context: {:?}", file_st, context);
const fn fstat_to_file_attr(file_st: &FileStat, context: &FileSystemContext) -> FileAttr {
debug_assert!(file_st.file_id != 0 && file_st.parent_file_id != 0);
FileAttr {
ino: file_st.file_id,
Expand Down

0 comments on commit d1bfdba

Please sign in to comment.