From: Tulio A M Mendes Date: Fri, 13 Feb 2026 20:05:07 +0000 (-0300) Subject: cleanup: fix stale x86 'eax' reference in syscall.c comment X-Git-Url: https://projects.tadryanom.me/docs/static/git-logo.png?a=commitdiff_plain;h=5ea305805773fa12bc1905149822a176bcb651ad;p=AdrOS.git cleanup: fix stale x86 'eax' reference in syscall.c comment --- diff --git a/src/kernel/syscall.c b/src/kernel/syscall.c index 5ab2e7f..c77fa1d 100644 --- a/src/kernel/syscall.c +++ b/src/kernel/syscall.c @@ -2330,7 +2330,7 @@ void syscall_handler(struct registers* regs) { /* ---- Socket syscalls ---- */ socket_syscall_dispatch(regs, syscall_no); - /* If socket dispatch handled it, eax is set and we return. + /* If socket dispatch handled it, the return register is set and we return. If not, it sets ENOSYS. Either way, return. */ return; }