summaryrefslogtreecommitdiff
path: root/Kernel/KBufferBuilder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/KBufferBuilder.cpp')
-rw-r--r--Kernel/KBufferBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/KBufferBuilder.cpp b/Kernel/KBufferBuilder.cpp
index edc6fe227e..fe93103a86 100644
--- a/Kernel/KBufferBuilder.cpp
+++ b/Kernel/KBufferBuilder.cpp
@@ -80,7 +80,7 @@ ErrorOr<void> KBufferBuilder::append(StringView str)
return {};
}
-ErrorOr<void> KBufferBuilder::append(const char* characters, int length)
+ErrorOr<void> KBufferBuilder::append(char const* characters, int length)
{
if (!length)
return {};