BarryServer : Git

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

// Related

Nucleus

Barry FS Object wrapper functions 77a8df8 (3 years, 3 months ago)
diff --git a/vfs/fstype.c b/vfs/fstype.c
index 73d28c8..9043ba4 100644
--- a/vfs/fstype.c
+++ b/vfs/fstype.c
@@ -11,6 +11,7 @@
 
 /* Structure for a File System Type */
 struct FSType {
+	Object obj;
 	const char *name;
 	Inode *(*mount)(FSType *, int, const char *, void *);
 };
@@ -23,6 +24,7 @@ struct FindData {
 
 /* File System Type object type */
 ObjectType fstypeType = {
+	.name = "FILE SYSTEM TYPE",
 	.size = sizeof(FSType),
 };