diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-12-04 16:58:05 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-12-04 16:58:05 +0100 |
| commit | 9165ec875a36b2d146b7749f8da9bc14f3bb635b (patch) | |
| tree | ca4ba6d04d55456e432e92b1b8cd7f9ac2897bd9 /src/include | |
| parent | 6a7997b41eccd62c9743b52e80033a586aebd006 (diff) | |
| download | box64-9165ec875a36b2d146b7749f8da9bc14f3bb635b.tar.gz box64-9165ec875a36b2d146b7749f8da9bc14f3bb635b.zip | |
[BOX32] Some fixes to a few file related 32bits wrapped function (now windows gog installer can be used with box32 and wine)
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/myalign32.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/myalign32.h b/src/include/myalign32.h index b7d49cbd..3f4ae6a5 100755 --- a/src/include/myalign32.h +++ b/src/include/myalign32.h @@ -153,18 +153,18 @@ struct i386_statfs { }; struct i386_statfs64 { - uint32_t f_type; - uint32_t f_bsize; + long_t f_type; + long_t f_bsize; uint64_t f_blocks; uint64_t f_bfree; uint64_t f_bavail; uint64_t f_files; uint64_t f_ffree; struct i386_fsid f_fsid; - uint32_t f_namelen; - uint32_t f_frsize; - uint32_t f_flags; - uint32_t f_spare[4]; + long_t f_namelen; + long_t f_frsize; + long_t f_flags; + long_t f_spare[4]; }; struct i386_statvfs64 { |