Remove path argument from mount function

This commit is contained in:
pjht 2024-06-18 16:43:10 -05:00
parent 2504ff88fd
commit 04cf7b8f6a
Signed by: pjht
GPG Key ID: 7B5F6AFBEC7EE78E

View File

@ -8,7 +8,7 @@ struct Serv {
}
impl fs_rpc::Server for Serv {
fn mount(&self, _dev: &std::path::Path, _path: &std::path::Path) -> Result<u64, ()> {
fn mount(&self, _dev: &std::path::Path) -> Result<u64, ()> {
Ok(0)
}