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:
Fredrik Holmqvist
2018-04-25 21:41:33 +02:00
parent a77aa747ea
commit b18b18ac3e
@@ -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();