X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Ffs%2Froot.c;h=7a1dade34f10861bc40d805f96b6c647b0ebbda6;hb=1ca0233bb1e142c536d09c35ce8dcdb209a2938b;hp=e27c6368355acf3619f20bd712d66ef273f35cb2;hpb=8fef00cfab98773a519ab909fa9da9dc7af692db;p=tpg%2Facess2.git diff --git a/Kernel/vfs/fs/root.c b/Kernel/vfs/fs/root.c index e27c6368..7a1dade3 100644 --- a/Kernel/vfs/fs/root.c +++ b/Kernel/vfs/fs/root.c @@ -9,7 +9,7 @@ #define MAX_FILES 64 // === PROTOTYPES === -tVFS_Node *Root_InitDevice(char *Device, char *Options); +tVFS_Node *Root_InitDevice(char *Device, char **Options); int Root_MkNod(tVFS_Node *Node, char *Name, Uint Flags); tVFS_Node *Root_FindDir(tVFS_Node *Node, char *Name); char *Root_ReadDir(tVFS_Node *Node, int Pos); @@ -33,10 +33,10 @@ tVFS_ACL RootFS_ACLs[3] = { // === CODE === /** - * \fn tVFS_Node *Root_InitDevice(char *Device, char *Options) + * \fn tVFS_Node *Root_InitDevice(char *Device, char **Options) * \brief Initialise the root filesystem */ -tVFS_Node *Root_InitDevice(char *Device, char *Options) +tVFS_Node *Root_InitDevice(char *Device, char **Options) { tRamFS_File *root; if(strcmp(Device, "root") != 0) {