diff --git a/libc/sys/mman.cpp b/libc/sys/mman.cpp index 73ad1d72ab..c43ecf3fb7 100644 --- a/libc/sys/mman.cpp +++ b/libc/sys/mman.cpp @@ -9,6 +9,7 @@ void* mmap(void* addr, size_t len, int prot, int flags, int fildes, off_t off) .len = len, .prot = prot, .flags = flags, + .fildes = fildes, .off = off }; long ret = syscall(SYS_MMAP, &args);