From c30041b733447265ca861e4e36ab3e451f6d18ba Mon Sep 17 00:00:00 2001 From: apio Date: Tue, 11 Oct 2022 21:17:07 +0200 Subject: [PATCH] fix naming --- libs/libc/src/unistd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libc/src/unistd.cpp b/libs/libc/src/unistd.cpp index ebe2a8a4..4841f861 100644 --- a/libs/libc/src/unistd.cpp +++ b/libs/libc/src/unistd.cpp @@ -82,7 +82,7 @@ extern "C" ssize_t write(int fd, const void* buf, size_t count) { - return syscall(SYS_write, fd, count, buf); // yes, our read() syscall is in the wrong order. + return syscall(SYS_write, fd, count, buf); // yes, our write() syscall is in the wrong order. } int close(int fd)