X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FFilesystems%2FInitRD%2Fmain.c;h=e578191550ec35d00dbfd5b1b1166e2a6590ee82;hb=4fc7efa62f7a33e0c8a499f5a175419c2d16c273;hp=ff24b5162595e58938f06c339d6affa2e8d132d2;hpb=e4ed0acbb2779cd319d0fad9d993c3488a6a0b28;p=tpg%2Facess2.git diff --git a/Modules/Filesystems/InitRD/main.c b/Modules/Filesystems/InitRD/main.c index ff24b516..e5781915 100644 --- a/Modules/Filesystems/InitRD/main.c +++ b/Modules/Filesystems/InitRD/main.c @@ -12,7 +12,7 @@ extern tVFS_Node gInitRD_RootNode; // === PROTOTYPES === int InitRD_Install(char **Arguments); -tVFS_Node *InitRD_InitDevice(char *Device, char **Arguments); +tVFS_Node *InitRD_InitDevice(const char *Device, const char **Arguments); void InitRD_Unmount(tVFS_Node *Node); Uint64 InitRD_ReadFile(tVFS_Node *Node, Uint64 Offset, Uint64 Size, void *Buffer); char *InitRD_ReadDir(tVFS_Node *Node, int ID); @@ -38,7 +38,7 @@ int InitRD_Install(char **Arguments) /** * \brief Mount the InitRD */ -tVFS_Node *InitRD_InitDevice(char *Device, char **Arguments) +tVFS_Node *InitRD_InitDevice(const char *Device, const char **Arguments) { #if DUMP_ON_MOUNT InitRD_DumpDir( &gInitRD_RootNode, 0 );