From 8fe4512f8ed3649e087209c6aaf731986955825f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 23 May 2020 13:58:48 +0200 Subject: [PATCH] AK: Fix inconsistent signature for dbgputstr() --- AK/kstdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/kstdio.h b/AK/kstdio.h index 42f37fb1f3..a766c347ad 100644 --- a/AK/kstdio.h +++ b/AK/kstdio.h @@ -33,7 +33,7 @@ # include extern "C" { int dbgprintf(const char* fmt, ...); -int dbgputstr(const char*, int); +int dbgputstr(const char*, ssize_t); int sprintf(char* buf, const char* fmt, ...); } template