linux(4): Use l_off_t type for offset argument in sendfile syscall

The off_t on Linux is a long, so it's non-functional change, just to
avoid confusing future readers.

MFC after:		1 month
This commit is contained in:
Dmitry Chagin 2023-08-17 22:57:16 +03:00
parent 5ad5cf5079
commit 5068387f42
2 changed files with 2 additions and 2 deletions

View File

@ -1020,7 +1020,7 @@
int linux_sendfile(
l_int out,
l_int in,
l_long *offset,
l_off_t *offset,
l_size_t count
);
}

View File

@ -1038,7 +1038,7 @@
int linux_sendfile(
l_int out,
l_int in,
l_long *offset,
l_off_t *offset,
l_size_t count
);
}