BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 77a8df88b03707e14f840df6b0daeb9fa081f613 / vfs / superblock.c

// Related

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;