summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/src/KString.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/src/KString.cc')
-rw-r--r--dev/Kernel/src/KString.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/Kernel/src/KString.cc b/dev/Kernel/src/KString.cc
index dbc730fd..d96ef38c 100644
--- a/dev/Kernel/src/KString.cc
+++ b/dev/Kernel/src/KString.cc
@@ -34,7 +34,7 @@ namespace NeOS
for (Size index = 0; index < this->Length(); ++index)
{
- if (rhs.fData[index] != fData[index])
+ if (rhs.fData[index] != this->fData[index])
return false;
}
@@ -48,7 +48,7 @@ namespace NeOS
for (Size index = 0; index < rt_string_len(rhs); ++index)
{
- if (rhs[index] != fData[index])
+ if (rhs[index] != this->fData[index])
return false;
}
@@ -62,7 +62,7 @@ namespace NeOS
for (Size index = 0; index < rhs.Length(); ++index)
{
- if (rhs.fData[index] == fData[index])
+ if (rhs.fData[index] == this->fData[index])
return false;
}
@@ -76,7 +76,7 @@ namespace NeOS
for (Size index = 0; index < rt_string_len(rhs); ++index)
{
- if (rhs[index] == fData[index])
+ if (rhs[index] == this->fData[index])
return false;
}