summaryrefslogtreecommitdiffstats
path: root/usr/syscall.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-03-15 13:16:02 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-03-15 13:16:02 -0400
commitdd5d9e1d48396cbc226ff14fe557a55613c91fcb (patch)
treeb0ec9f54b80f26777ac08b723b42c1c64c5a2bda /usr/syscall.c
parentf46ab8ca2050ee77edf6e6b979875426bdaf29dc (diff)
downloadjove-kernel-dd5d9e1d48396cbc226ff14fe557a55613c91fcb.tar.gz
jove-kernel-dd5d9e1d48396cbc226ff14fe557a55613c91fcb.tar.bz2
jove-kernel-dd5d9e1d48396cbc226ff14fe557a55613c91fcb.zip
better buddy memory allocator
Diffstat (limited to 'usr/syscall.c')
-rw-r--r--usr/syscall.c1
1 files changed, 0 insertions, 1 deletions
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;