diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-13 17:20:30 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-13 17:21:05 +0100 |
| commit | b75417b44d5f63ea0ead68cbe8f62bd76df62229 (patch) | |
| tree | 81527a21bdf4ae8f14fb8acd0ff04d9d127f24d3 /Private/Source | |
| parent | a9ac78b47dd040e04afc4990dace2472df2302e4 (diff) | |
HCR-15: Merge to master branch.
Important commit and end of ticket.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/Source')
| -rw-r--r-- | Private/Source/DeviceManager.cxx (renamed from Private/Source/Device.cxx) | 2 | ||||
| -rw-r--r-- | Private/Source/DriveManager.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Private/Source/Device.cxx b/Private/Source/DeviceManager.cxx index ae72fdad..e5b84bd3 100644 --- a/Private/Source/Device.cxx +++ b/Private/Source/DeviceManager.cxx @@ -7,4 +7,4 @@ * ======================================================== */ -#include <KernelKit/Device.hpp> +#include <KernelKit/DeviceManager.hpp> diff --git a/Private/Source/DriveManager.cxx b/Private/Source/DriveManager.cxx index bc100a1a..371758b1 100644 --- a/Private/Source/DriveManager.cxx +++ b/Private/Source/DriveManager.cxx @@ -33,7 +33,7 @@ bool DriveSelector::Mount(DriveTraits *drive) { fDrive = drive; fDrive->fMount(); - kcout << "[Krnl] mounted: " << fDrive->fName << "\n"; + kcout << "Mount: " << fDrive->fName << "\n"; return true; } @@ -49,7 +49,7 @@ DriveTraits *DriveSelector::Unmount() { fDrive->fUnmount(); fDrive = nullptr; - kcout << "[Krnl] unmounted: " << fDrive->fName << "\n"; + kcout << "Unmount: " << fDrive->fName << "\n"; return drivePointer; } |
