OSDN Git Service

* include/cygwin/types.h (struct __fcntl64): Fix datatype of l_start.
authorcorinna <corinna>
Thu, 4 Dec 2003 09:37:54 +0000 (09:37 +0000)
committercorinna <corinna>
Thu, 4 Dec 2003 09:37:54 +0000 (09:37 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/cygwin/types.h

index a0adf10..2cb5fe1 100644 (file)
@@ -1,3 +1,7 @@
+2003-12-04  Corinna Vinschen  <corinna@vinschen.de>
+
+       * include/cygwin/types.h (struct __fcntl64): Fix datatype of l_start.
+
 2003-12-03  Corinna Vinschen  <corinna@vinschen.de>
 
        Substitute 0x7fffffff and 0xffffffff by INT32_MAX and UINT32_MAX
index fc803ac..aaa0f67 100644 (file)
@@ -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 */
 };