summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/Sources/Network
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-22 08:48:37 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-22 08:48:37 +0200
commit5d38a6302720eb1d2783c2067965ade316cc92de (patch)
tree906b56ec92e9075181494e8a4012ebde72d22175 /dev/ZKA/Sources/Network
parentb95b1fc42d371b08aa82fea8e92aa04b2ef5631f (diff)
[REFACTOR] use Char instead of builtin char.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Sources/Network')
-rw-r--r--dev/ZKA/Sources/Network/IP.cxx2
-rw-r--r--dev/ZKA/Sources/Network/NetworkDevice.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKA/Sources/Network/IP.cxx b/dev/ZKA/Sources/Network/IP.cxx
index 3e5462a1..77571bc7 100644
--- a/dev/ZKA/Sources/Network/IP.cxx
+++ b/dev/ZKA/Sources/Network/IP.cxx
@@ -102,7 +102,7 @@ namespace Kernel
return str;
}
- bool IPFactory::IpCheckVersion4(const char* ip)
+ bool IPFactory::IpCheckVersion4(const Char* ip)
{
int cnter = 0;
diff --git a/dev/ZKA/Sources/Network/NetworkDevice.cxx b/dev/ZKA/Sources/Network/NetworkDevice.cxx
index 1bcd9e24..afb3e468 100644
--- a/dev/ZKA/Sources/Network/NetworkDevice.cxx
+++ b/dev/ZKA/Sources/Network/NetworkDevice.cxx
@@ -10,13 +10,13 @@
namespace Kernel
{
/// \brief Getter for fNetworkName.
- const char* NetworkDevice::Name() const
+ const Char* NetworkDevice::Name() const
{
return this->fNetworkName;
}
/// \brief Setter for fNetworkName.
- Boolean NetworkDevice::Name(const char* strView)
+ Boolean NetworkDevice::Name(const Char* strView)
{
if (strView == nullptr)
return false;