From b18b18ac3ea404c98961626cccc62d5b3d814a7b Mon Sep 17 00:00:00 2001 From: Fredrik Holmqvist Date: Tue, 24 Apr 2018 21:41:52 +0200 Subject: [PATCH] Wrong order of arguments in header. It is called from KernelInterface with Mount(&fs, server, serverName, path.. That is also what FileSystem.cpp says. --- src/add-ons/kernel/file_systems/nfs4/FileSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/kernel/file_systems/nfs4/FileSystem.h b/src/add-ons/kernel/file_systems/nfs4/FileSystem.h index 5fdca263a1..c8e77d4ae9 100644 --- a/src/add-ons/kernel/file_systems/nfs4/FileSystem.h +++ b/src/add-ons/kernel/file_systems/nfs4/FileSystem.h @@ -32,7 +32,7 @@ struct MountConfiguration { class FileSystem : public DoublyLinkedListLinkImpl { public: static status_t Mount(FileSystem** pfs, RPC::Server* serv, - const char* path, const char* serverName, + const char* serverName, const char* path, dev_t id, const MountConfiguration& configuration); ~FileSystem();