summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/scanf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibC/scanf.cpp')
-rw-r--r--Userland/Libraries/LibC/scanf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/scanf.cpp b/Userland/Libraries/LibC/scanf.cpp
index 246e54e48a..27e981427d 100644
--- a/Userland/Libraries/LibC/scanf.cpp
+++ b/Userland/Libraries/LibC/scanf.cpp
@@ -384,7 +384,7 @@ private:
size_t count { 0 };
};
-extern "C" int vsscanf(const char* input, const char* format, va_list ap)
+extern "C" int vsscanf(char const* input, char const* format, va_list ap)
{
GenericLexer format_lexer { format };
GenericLexer input_lexer { input };