Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/memory/mman-win32/mman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ int fsync(int fd) noexcept
return 0;
}

int fallocate(int fd, int mode, oft__ offset, oft__ size) noexcept
int fallocate(int fd, int, oft__ offset, oft__ size) noexcept
{
return ftruncate(fd, offset + size);
}
Expand Down
Loading