mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
16 lines
376 B
Diff
16 lines
376 B
Diff
use correct off_t type as it's already 64-bits
|
|
diff --git a/src/posix-io.c b/src/posix-io.c
|
|
index a422d8f..25f694e 100644
|
|
--- a/src/posix-io.c
|
|
+++ b/src/posix-io.c
|
|
@@ -74,8 +74,8 @@
|
|
* define it ourselves. */
|
|
struct linux_dirent64
|
|
{
|
|
- ino64_t d_ino;
|
|
- off64_t d_off;
|
|
+ ino_t d_ino;
|
|
+ off_t d_off;
|
|
unsigned short d_reclen;
|
|
unsigned char d_type;
|
|
char d_name[];
|