diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-22 08:48:37 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-22 08:48:37 +0200 |
| commit | 5d38a6302720eb1d2783c2067965ade316cc92de (patch) | |
| tree | 906b56ec92e9075181494e8a4012ebde72d22175 /dev/ZKA/Sources/Storage | |
| parent | b95b1fc42d371b08aa82fea8e92aa04b2ef5631f (diff) | |
[REFACTOR] use Char instead of builtin char.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Sources/Storage')
| -rw-r--r-- | dev/ZKA/Sources/Storage/AHCIDeviceInterface.cxx | 2 | ||||
| -rw-r--r-- | dev/ZKA/Sources/Storage/ATADeviceInterface.cxx | 2 | ||||
| -rw-r--r-- | dev/ZKA/Sources/Storage/NVMEDeviceInterface.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKA/Sources/Storage/AHCIDeviceInterface.cxx b/dev/ZKA/Sources/Storage/AHCIDeviceInterface.cxx index dde33193..cfb80c0f 100644 --- a/dev/ZKA/Sources/Storage/AHCIDeviceInterface.cxx +++ b/dev/ZKA/Sources/Storage/AHCIDeviceInterface.cxx @@ -29,7 +29,7 @@ AHCIDeviceInterface::~AHCIDeviceInterface() /// @brief Returns the name of the device interface. /// @return it's name as a string. -const char* AHCIDeviceInterface::Name() const +const Char* AHCIDeviceInterface::Name() const { return "AHCIDeviceInterface"; } diff --git a/dev/ZKA/Sources/Storage/ATADeviceInterface.cxx b/dev/ZKA/Sources/Storage/ATADeviceInterface.cxx index 1611e790..183481e1 100644 --- a/dev/ZKA/Sources/Storage/ATADeviceInterface.cxx +++ b/dev/ZKA/Sources/Storage/ATADeviceInterface.cxx @@ -30,7 +30,7 @@ ATADeviceInterface::~ATADeviceInterface() /// @brief Returns the name of the device interface. /// @return it's name as a string. -const char* ATADeviceInterface::Name() const +const Char* ATADeviceInterface::Name() const { return "ATADeviceInterface"; } diff --git a/dev/ZKA/Sources/Storage/NVMEDeviceInterface.cxx b/dev/ZKA/Sources/Storage/NVMEDeviceInterface.cxx index 7d07bf4b..5809a5e6 100644 --- a/dev/ZKA/Sources/Storage/NVMEDeviceInterface.cxx +++ b/dev/ZKA/Sources/Storage/NVMEDeviceInterface.cxx @@ -21,7 +21,7 @@ namespace Kernel fCleanup(); } - const char* NVMEDeviceInterface::Name() const + const Char* NVMEDeviceInterface::Name() const { return ("NVMEDeviceInterface"); } |
