summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/Main.cxx
diff options
context:
space:
mode:
authorAmlal <amlal@zka.com>2024-07-23 17:18:32 +0200
committerAmlal <amlal@zka.com>2024-07-23 17:18:32 +0200
commita4f908c4d3d0c8d5a3578bf81028986405e96937 (patch)
treea3a689dba643fc8393d16aed0064b7de1f13d020 /Kernel/Sources/Main.cxx
parent274cba18b8f1c255ddcff2f5c14aab4d0c846820 (diff)
[MHR-36] Refactors and such.
Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Kernel/Sources/Main.cxx')
-rw-r--r--Kernel/Sources/Main.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/Sources/Main.cxx b/Kernel/Sources/Main.cxx
index b0083730..950a8e48 100644
--- a/Kernel/Sources/Main.cxx
+++ b/Kernel/Sources/Main.cxx
@@ -80,7 +80,7 @@ namespace Kernel::Detail
catalogDir = fNewFS->GetParser()->CreateCatalog(cDirStr[dirIndx], 0,
kNewFSCatalogKindDir);
- NewFork theFork{0};
+ NFS_FORK_STRUCT theFork{0};
const Kernel::Char* cSrcName = cFolderInfo;
@@ -122,7 +122,7 @@ namespace Kernel::Detail
}
}
- NewCatalog* catalogDisk =
+ NFS_CATALOG_STRUCT* catalogDisk =
this->fNewFS->GetParser()->GetCatalog("\\Mount\\SIM:");
const Kernel::Char* cSrcName = "DISK-INF";
@@ -134,7 +134,7 @@ namespace Kernel::Detail
else
{
catalogDisk =
- (NewCatalog*)this->Leak()->CreateAlias("\\Mount\\SIM:");
+ (NFS_CATALOG_STRUCT*)this->Leak()->CreateAlias("\\Mount\\SIM:");
Kernel::StringView diskFolder(kNewFSSectorSz);
@@ -147,7 +147,7 @@ namespace Kernel::Detail
diskFolder += Kernel::NewFilesystemHelper::Root();
diskFolder += "</p>\r";
- NewFork theDiskFork{0};
+ NFS_FORK_STRUCT theDiskFork{0};
Kernel::rt_copy_memory((Kernel::VoidPtr)(cSrcName), theDiskFork.ForkName,
Kernel::rt_string_len(cSrcName));