Skip to content

Commit

Permalink
adjust comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tompro committed Feb 17, 2024
1 parent b5bf2f9 commit 18a9915
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/kernel/src/fs/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ pub trait FileBackend: Debug + Send + Sync + 'static {
Err(Box::new(DefaultError::IoCmdNotSupported))
}

/// This function doesn't have a default erroring implementation because it seems to be implemented in every instance of `fileops`.
/// This method doesn't have a default erroring implementation like the other ones,
/// because it seems to be properly implemented in every instance of `fileops`.
#[allow(unused_variables)]
fn stat(self: &Arc<Self>, file: &VFile, td: Option<&VThread>) -> Result<Stat, Box<dyn Errno>>;

Expand Down

0 comments on commit 18a9915

Please sign in to comment.