Use KPath now.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9553 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
8ece359269
commit
2cee54a863
@ -8,6 +8,7 @@
|
||||
#include "KDiskDeviceUtils.h"
|
||||
#include "KDiskSystem.h"
|
||||
#include "KPartition.h"
|
||||
#include "KPath.h"
|
||||
#include "KScanPartitionJob.h"
|
||||
|
||||
// debugging
|
||||
@ -60,9 +61,11 @@ KScanPartitionJob::_ScanPartition(KPartition *partition)
|
||||
// the partition's device must be write-locked
|
||||
if (!partition)
|
||||
return B_BAD_VALUE;
|
||||
char partitionPath[B_PATH_NAME_LENGTH];
|
||||
partition->GetPath(partitionPath);
|
||||
DBG(OUT("KDiskDeviceManager::_ScanPartition(%s)\n", partitionPath));
|
||||
DBG(
|
||||
KPath partitionPath;
|
||||
partition->GetPath(&partitionPath);
|
||||
OUT("KDiskDeviceManager::_ScanPartition(%s)\n", partitionPath.Path())
|
||||
)
|
||||
// publish the partition
|
||||
status_t error = partition->PublishDevice();
|
||||
if (error != B_OK)
|
||||
|
Loading…
Reference in New Issue
Block a user