commit | 9bd74de23147250ff882901159ce389a4e70563d | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Tue Jun 15 20:30:48 2021 -0700 |
committer | swissChili <swisschili@fastmail.com> | Tue Jun 15 20:30:48 2021 -0700 |
tree | 79fde0c9e04c1de7b67452c3aa7821103d410cfc | |
parent | 4418ca541376ae8bc1c0a8aae2f29ab9a29a792c [diff] [blame] |
Add nice logs
diff --git a/src/kernel/syscall.c b/src/kernel/syscall.c index 6877e63..5a48b30 100644 --- a/src/kernel/syscall.c +++ b/src/kernel/syscall.c
@@ -4,7 +4,7 @@ void do_syscall(struct registers *regs) { - kprintf("Syscall executed: %d\n", regs->eax); + kprintf(INFO "Syscall executed: %d\n", regs->eax); } void init_syscall()