From e288b9ee4b23e6ae424e899b97b2bb60dce9d364 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Tue, 7 Mar 2017 00:15:04 +0100 Subject: [PATCH] remove typos --- kernel/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/syscall.c b/kernel/syscall.c index a41269add..36479a277 100644 --- a/kernel/syscall.c +++ b/kernel/syscall.c @@ -390,7 +390,7 @@ int sys_close(int fd) if (is_uhyve()) { uhyve_close_t uhyve_close = {fd, -1}; - uhyve_sendl(UHYVE_PORT_CLOSE, (unsigned)virt_to_phys((size_t) &uhyve_close)); + uhyve_send(UHYVE_PORT_CLOSE, (unsigned)virt_to_phys((size_t) &uhyve_close)); return uhyve_close.ret; }