From f7edf08d067b4c52c3183e8ad0467293e54075e8 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 31 Jan 2024 12:41:06 +0100 Subject: Add BUG_LIST.TXT, kernel improvements and Public kits improvements. Signed-off-by: Amlal El Mahrouss --- Private/Source/DriveManager.cxx | 4 ++-- Private/Source/GUIDWizard.cxx | 3 +-- Private/Source/NewFS-IO.cxx | 2 ++ Private/Source/Variant.cxx | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) (limited to 'Private/Source') diff --git a/Private/Source/DriveManager.cxx b/Private/Source/DriveManager.cxx index 9611575d..10c4d28e 100644 --- a/Private/Source/DriveManager.cxx +++ b/Private/Source/DriveManager.cxx @@ -29,7 +29,7 @@ bool DriveSelector::Mount(DriveTraits *drive) { fDrive = drive; fDrive->fMount(); - kcout << "[Mount] drive: " << fDrive->fName << "\n"; + kcout << "Mount drive: " << fDrive->fName << "\n"; return true; } @@ -45,7 +45,7 @@ DriveTraits *DriveSelector::Unmount() { fDrive->fUnmount(); fDrive = nullptr; - kcout << "[Unmount] drive: " << drivePointer->fName << "\n"; + kcout << "Unmount drive: " << drivePointer->fName << "\n"; return drivePointer; } diff --git a/Private/Source/GUIDWizard.cxx b/Private/Source/GUIDWizard.cxx index 57915f64..829a27d8 100644 --- a/Private/Source/GUIDWizard.cxx +++ b/Private/Source/GUIDWizard.cxx @@ -12,9 +12,8 @@ // begin of ascii 'readable' characters. (A, C, C, 1, 2) #define kAsciiBegin 47 - // @brief Size of UUID. -#define kUUIDSize 32 +#define kUUIDSize 37 namespace HCore::XRN::Version1 { auto make_sequence(const ArrayList& uuidSeq) -> Ref { diff --git a/Private/Source/NewFS-IO.cxx b/Private/Source/NewFS-IO.cxx index f5d550e0..7ecd396d 100644 --- a/Private/Source/NewFS-IO.cxx +++ b/Private/Source/NewFS-IO.cxx @@ -11,4 +11,6 @@ #include #include +/// @brief this implements NewFS with Device Abstraction in mind. + /// bugs 0 diff --git a/Private/Source/Variant.cxx b/Private/Source/Variant.cxx index a09c847c..a6e34119 100644 --- a/Private/Source/Variant.cxx +++ b/Private/Source/Variant.cxx @@ -21,7 +21,7 @@ const Char* Variant::ToString() { case VariantKind::kPointer: return ("Memory:{Pointer}"); default: - return ("Class:{Undefined}"); + return ("Memory:{Undefined}"); } } -- cgit v1.2.3