From dd5d9e1d48396cbc226ff14fe557a55613c91fcb Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Fri, 15 Mar 2024 13:16:02 -0400 Subject: better buddy memory allocator --- usr/syscall.c | 1 - 1 file changed, 1 deletion(-) (limited to 'usr/syscall.c') diff --git a/usr/syscall.c b/usr/syscall.c index 834bd5b..8680845 100644 --- a/usr/syscall.c +++ b/usr/syscall.c @@ -5,7 +5,6 @@ int _syscall_handler_log(struct syscall_log *req) { - klogf("Message ptr %#016X\n", req->message); if(!mem_check_ptr(req->message)) return -1; klogf("%s", req->message); return 0; -- cgit v1.2.1