From 63e9aa86f064f99959699ecf81faeb208c90663e Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 20 Jul 2003 17:20:05 +0000 Subject: [PATCH] _kern_get_next_supported_partition_type() syscall changed slightly. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4032 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/storage/DiskSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/storage/DiskSystem.cpp b/src/kits/storage/DiskSystem.cpp index 80be72840f..55e159e890 100644 --- a/src/kits/storage/DiskSystem.cpp +++ b/src/kits/storage/DiskSystem.cpp @@ -225,7 +225,7 @@ BDiskSystem::GetNextSupportedType(BPartition *partition, int32 *cookie, || !IsPartitioningSystem()) { return B_BAD_VALUE; } - return _kern_get_next_supported_partition_type(fID, partition->_ShadowID(), + return _kern_get_next_supported_partition_type(partition->_ShadowID(), cookie, type); }