From 45548d516ddf5e88bf80940365d151e1bd69c29f Mon Sep 17 00:00:00 2001 From: amlal Date: Sun, 17 Mar 2024 07:25:31 +0100 Subject: HCR-14: A series of important fixes and improvements regarding the kernel. Signed-off-by: amlal --- Private/Source/NewFS+FileManager.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Private/Source/NewFS+FileManager.cxx') diff --git a/Private/Source/NewFS+FileManager.cxx b/Private/Source/NewFS+FileManager.cxx index e03cc471..5924385d 100644 --- a/Private/Source/NewFS+FileManager.cxx +++ b/Private/Source/NewFS+FileManager.cxx @@ -26,22 +26,22 @@ bool NewFilesystemManager::Remove(const char* node_name) { } NodePtr NewFilesystemManager::Create(const char* path) { - return node_cast(fImpl->CreateCatalog(path, 0, kCatalogKindFile)); + return node_cast(fImpl->CreateCatalog(path, 0, kNewFSCatalogKindFile)); } NodePtr NewFilesystemManager::CreateDirectory(const char* path) { - return node_cast(fImpl->CreateCatalog(path, 0, kCatalogKindDir)); + return node_cast(fImpl->CreateCatalog(path, 0, kNewFSCatalogKindDir)); } NodePtr NewFilesystemManager::CreateAlias(const char* path) { - return node_cast(fImpl->CreateCatalog(path, 0, kCatalogKindAlias)); + return node_cast(fImpl->CreateCatalog(path, 0, kNewFSCatalogKindAlias)); } -const char* NewFilesystemHelper::Root() { return kFilesystemRoot; } +const char* NewFilesystemHelper::Root() { return kNewFSRoot; } -const char* NewFilesystemHelper::UpDir() { return kFilesystemUpDir; } +const char* NewFilesystemHelper::UpDir() { return kNewFSUpDir; } -const char NewFilesystemHelper::Separator() { return kFilesystemSeparator; } +const char NewFilesystemHelper::Separator() { return kNewFSSeparator; } } // namespace HCore #endif // ifdef __FSKIT_NEWFS__ -- cgit v1.2.3