Skip to content

Commit

Permalink
Merge pull request #15 from dalmemail/typo
Browse files Browse the repository at this point in the history
simple.c: Fix typo, simplefs_destory_inode() -> simplefs_destroy_inode()
  • Loading branch information
psankar authored Nov 5, 2024
2 parents c3b69c8 + 92da439 commit 4dc8ce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ struct dentry *simplefs_lookup(struct inode *parent_inode,
/**
* Simplest
*/
void simplefs_destory_inode(struct inode *inode)
void simplefs_destroy_inode(struct inode *inode)
{
struct simplefs_inode *sfs_inode = SIMPLEFS_INODE(inode);

Expand All @@ -709,7 +709,7 @@ static void simplefs_put_super(struct super_block *sb)
}

static const struct super_operations simplefs_sops = {
.destroy_inode = simplefs_destory_inode,
.destroy_inode = simplefs_destroy_inode,
.put_super = simplefs_put_super,
};

Expand Down

0 comments on commit 4dc8ce2

Please sign in to comment.