From e575a697ba932896ae5f1b7263a93ef334bbf771 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 2 Dec 2003 23:47:28 +0000 Subject: * fcntl.cc (_fcntl): Silence a compiler warning. --- winsup/cygwin/fcntl.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/fcntl.cc') 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; } -- cgit v1.2.3