From 5688ae7d7d8e67056b2ea3c8c2daa5d15cebe2b9 Mon Sep 17 00:00:00 2001 From: shatty Date: Mon, 22 Nov 2004 06:30:40 +0000 Subject: [PATCH] Ingo claims VisitEachPartition is the same as VisitAll, so I fixed this compile problem by changing VisitAll into VisitEachPartition git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10160 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/kits/storage/disk_device/DiskDeviceTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/kits/storage/disk_device/DiskDeviceTest.cpp b/src/tests/kits/storage/disk_device/DiskDeviceTest.cpp index 4f6a3f4489..2e0821262f 100644 --- a/src/tests/kits/storage/disk_device/DiskDeviceTest.cpp +++ b/src/tests/kits/storage/disk_device/DiskDeviceTest.cpp @@ -549,7 +549,7 @@ main() } // list all disk devices and partitions DumpVisitor visitor; - roster.VisitAll(&visitor); + roster.VisitEachPartition(&visitor); // list disk systems BDiskSystem diskSystem; while (roster.GetNextDiskSystem(&diskSystem) == B_OK) {