From 06f517532dc231021ebc656a9367cc463ddffed9 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 1 Nov 2004 13:03:04 +0000 Subject: [PATCH] The order of parameters for fs_mount_volume() changed. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9699 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/storage/Partition.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/storage/Partition.cpp b/src/kits/storage/Partition.cpp index 3c550eacf9..fabd27fddc 100644 --- a/src/kits/storage/Partition.cpp +++ b/src/kits/storage/Partition.cpp @@ -439,7 +439,7 @@ BPartition::Mount(const char *mountPoint, uint32 mountFlags, } // mount the partition - error = fs_mount_volume(NULL, mountPoint, partitionPath.Path(), mountFlags, + error = fs_mount_volume(mountPoint, partitionPath.Path(), NULL, mountFlags, parameters); // delete the mount point on error, if we created it