Wrong order of arguments in header.
It is called from KernelInterface with Mount(&fs, server, serverName, path.. That is also what FileSystem.cpp says.
This commit is contained in:
@@ -32,7 +32,7 @@ struct MountConfiguration {
|
|||||||
class FileSystem : public DoublyLinkedListLinkImpl<FileSystem> {
|
class FileSystem : public DoublyLinkedListLinkImpl<FileSystem> {
|
||||||
public:
|
public:
|
||||||
static status_t Mount(FileSystem** pfs, RPC::Server* serv,
|
static status_t Mount(FileSystem** pfs, RPC::Server* serv,
|
||||||
const char* path, const char* serverName,
|
const char* serverName, const char* path,
|
||||||
dev_t id,
|
dev_t id,
|
||||||
const MountConfiguration& configuration);
|
const MountConfiguration& configuration);
|
||||||
~FileSystem();
|
~FileSystem();
|
||||||
|
|||||||
Reference in New Issue
Block a user