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 26, 2024
1 parent 16f2fbc commit 425c490
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 @@ -554,8 +554,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);
let perm = match file_st.kind {
Directory => context.default_dir_perm,
Expand Down

0 comments on commit 425c490

Please sign in to comment.