From 592db10ed70900654b4e2ca2d23dce2da2df3fab Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 4 Dec 2003 09:37:55 +0000 Subject: [PATCH] * include/cygwin/types.h (struct __fcntl64): Fix datatype of l_start. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/include/cygwin/types.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index a0adf1010..2cb5fe16f 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2003-12-04 Corinna Vinschen + + * include/cygwin/types.h (struct __fcntl64): Fix datatype of l_start. + 2003-12-03 Corinna Vinschen Substitute 0x7fffffff and 0xffffffff by INT32_MAX and UINT32_MAX 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 */ };