mufs: remove type argument from mufs_rmpath()

tags/0.1.0
S.J.R. van Schaik 8 years ago
parent e837c07869
commit 3b531e868b
  1. 2
      source/fs/mufs/path.c
  2. 2
      source/fs/mufs/path.h

@ -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…
Cancel
Save