summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/KernelKit
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZKA/KernelKit')
-rw-r--r--dev/ZKA/KernelKit/FileMgr.hxx8
-rw-r--r--dev/ZKA/KernelKit/PEFCodeMgr.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZKA/KernelKit/FileMgr.hxx b/dev/ZKA/KernelKit/FileMgr.hxx
index 5b2b8fa8..b569ce36 100644
--- a/dev/ZKA/KernelKit/FileMgr.hxx
+++ b/dev/ZKA/KernelKit/FileMgr.hxx
@@ -140,14 +140,14 @@ namespace Kernel
* @brief Based of IFilesystemMgr, takes care of managing NeFS
* disks.
*/
- class NewFilesystemMgr final : public IFilesystemMgr
+ class NeFileSystemMgr final : public IFilesystemMgr
{
public:
- explicit NewFilesystemMgr();
- ~NewFilesystemMgr() override;
+ explicit NeFileSystemMgr();
+ ~NeFileSystemMgr() override;
public:
- ZKA_COPY_DEFAULT(NewFilesystemMgr);
+ ZKA_COPY_DEFAULT(NeFileSystemMgr);
public:
NodePtr Create(const Char* path) override;
diff --git a/dev/ZKA/KernelKit/PEFCodeMgr.hxx b/dev/ZKA/KernelKit/PEFCodeMgr.hxx
index c2938fae..c6748ba0 100644
--- a/dev/ZKA/KernelKit/PEFCodeMgr.hxx
+++ b/dev/ZKA/KernelKit/PEFCodeMgr.hxx
@@ -47,7 +47,7 @@ namespace Kernel
private:
#ifdef __FSKIT_USE_NEFS__
- OwnPtr<FileStream<Char, NewFilesystemMgr>> fFile;
+ OwnPtr<FileStream<Char, NeFileSystemMgr>> fFile;
#else
OwnPtr<FileStream<Char>> fFile;
#endif // __FSKIT_USE_NEFS__