diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-12-04 09:37:55 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-12-04 09:37:55 +0000 |
commit | 592db10ed70900654b4e2ca2d23dce2da2df3fab (patch) | |
tree | 70d9e1d56d8058f6f5f4870179c5e3ee46445dc6 /winsup/cygwin/include | |
parent | a562b2239a6bc6372779c9c6a50855626976c2f6 (diff) | |
download | cygnal-592db10ed70900654b4e2ca2d23dce2da2df3fab.tar.gz cygnal-592db10ed70900654b4e2ca2d23dce2da2df3fab.tar.bz2 cygnal-592db10ed70900654b4e2ca2d23dce2da2df3fab.zip |
* include/cygwin/types.h (struct __fcntl64): Fix datatype of l_start.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/cygwin/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/cygwin/types.h b/winsup/cygwin/include/cygwin/types.h index fc803aca1..aaa0f67f1 100644 --- a/winsup/cygwin/include/cygwin/types.h +++ b/winsup/cygwin/include/cygwin/types.h @@ -112,7 +112,7 @@ struct __flock32 { struct __flock64 { short l_type; /* F_RDLCK, F_WRLCK, or F_UNLCK */ short l_whence; /* flag to choose starting offset */ - _off_t l_start; /* relative offset, in bytes */ + _off64_t l_start; /* relative offset, in bytes */ _off64_t l_len; /* length, in bytes; 0 means lock to EOF */ pid_t l_pid; /* returned with F_GETLK */ }; |