From 06be6d65bb71152be8a28d7bb6b1028b5a588654 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 28 Jan 2024 16:26:33 +0100 Subject: NewKernel: Final things are getting done for the first prototype. NewBoot: Add ARM64 to HEL. SPEC: Update it to include NewFS into it. Signed-off-by: Amlal El Mahrouss --- Private/KernelKit/FileManager.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Private/KernelKit/FileManager.hpp') diff --git a/Private/KernelKit/FileManager.hpp b/Private/KernelKit/FileManager.hpp index b3754f88..a1391c34 100644 --- a/Private/KernelKit/FileManager.hpp +++ b/Private/KernelKit/FileManager.hpp @@ -223,14 +223,14 @@ template cla } public: - const char *MIME() noexcept + char *MIME() noexcept { - return fMime; + return const_cast(fMime); } private: NodePtr fFile; - Char *fMime{"application-type/*"}; + const Char *fMime{"application-type/*"}; }; using FileStreamUTF8 = FileStream; -- cgit v1.2.3