Make some quick fixes

This commit is contained in:
Justine Tunney 2022-10-06 06:36:36 -07:00
parent d3efa47f81
commit a5b483f2d4
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2 changed files with 2 additions and 5 deletions

View file

@ -195,9 +195,6 @@ privileged static void klog(const char *b, size_t n) {
: "=a"(rax), "=D"(rdi), "=S"(rsi), "=d"(rdx)
: "0"(__NR_write), "1"(2), "2"(b), "3"(n)
: "rcx", "r8", "r9", "r10", "r11", "memory", "cc");
if (rax < 0) {
notpossible;
}
}
}