1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

Kernel: Use Userspace<> for sys$writev

This commit is contained in:
Nico Weber 2020-09-15 14:18:44 -04:00 committed by Andreas Kling
parent e1c54b8a0f
commit c9a3a5b488
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@
namespace Kernel {
ssize_t Process::sys$writev(int fd, const struct iovec* iov, int iov_count)
ssize_t Process::sys$writev(int fd, Userspace<const struct iovec*> iov, int iov_count)
{
REQUIRE_PROMISE(stdio);
if (iov_count < 0)