From e575a697ba932896ae5f1b7263a93ef334bbf771 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 2 Dec 2003 23:47:28 +0000 Subject: [PATCH] * fcntl.cc (_fcntl): Silence a compiler warning. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/fcntl.cc | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index e7fe0306b..4136f9e93 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2003-12-02 Christopher Faylor + + * fcntl.cc (_fcntl): Silence a compiler warning. + 2003-12-02 Pierre Humblet * pinfo.cc (pinfo::init): Use shared_name to construct the mapname. diff --git a/winsup/cygwin/fcntl.cc b/winsup/cygwin/fcntl.cc index 89287b647..28c669da6 100644 --- a/winsup/cygwin/fcntl.cc +++ b/winsup/cygwin/fcntl.cc @@ -56,7 +56,7 @@ _fcntl (int fd, int cmd,...) { void *arg = NULL; va_list args; - struct __flock32 *src; + struct __flock32 *src = NULL; struct __flock64 dst; va_start (args, cmd); @@ -64,7 +64,7 @@ _fcntl (int fd, int cmd,...) va_end (args); if (cmd == F_GETLK || cmd == F_SETLK || cmd == F_SETLKW) { - src = (struct __flock32 *)arg; + src = (struct __flock32 *) arg; dst.l_type = src->l_type; dst.l_whence = src->l_whence; dst.l_start = src->l_start; @@ -79,7 +79,7 @@ _fcntl (int fd, int cmd,...) src->l_whence = dst.l_whence; src->l_start = dst.l_start; src->l_len = dst.l_len; - src->l_pid = (short)dst.l_pid; + src->l_pid = (short) dst.l_pid; } return res; }