Nucleus
Barry FS Object wrapper functions 77a8df8 (3 years, 3 months ago)
diff --git a/vfs/superblock.c b/vfs/superblock.c
index 657ddc7..4d90e3d 100644
--- a/vfs/superblock.c
+++ b/vfs/superblock.c
@@ -17,11 +17,12 @@ struct FindData {
/* Super Block object type */
ObjectType superBlockType = {
+ .name = "SUPER BLOCK",
.size = sizeof(SuperBlock),
};
/* Find an Inode by ino value */
-int
+static int
compare_inode_ino(void *addr, void *data)
{
Inode *inode = addr;