mufs: remove type argument from mufs_rmpath()
This commit is contained in:
parent
e837c07869
commit
3b531e868b
2 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ static int remove_page(struct mufs_tree *tree, uint32_t va)
|
|||
return mufs_sync_tree(tree);
|
||||
}
|
||||
|
||||
int mufs_rmpath(struct mufs *fs, const char *path, unsigned type)
|
||||
int mufs_rmpath(struct mufs *fs, const char *path)
|
||||
{
|
||||
struct flash_dev *dev = fs->dev;
|
||||
char data[1 << dev->log2_block_size];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
int mufs_mkpath(struct mufs *fs, const char *path, unsigned type);
|
||||
int mufs_rmpath(struct mufs *fs, const char *path, unsigned type);
|
||||
int mufs_rmpath(struct mufs *fs, const char *path);
|
||||
|
|
Loading…
Add table
Reference in a new issue