From 0c55f6ed60a0b1b9c6ac47f8726191e48f90c052 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 6 Jul 2005 20:05:03 +0000 Subject: Eliminate (void) cast on standalone function calls throughout. --- winsup/cygwin/pipe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/pipe.cc') diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc index 0d9c0cd9f..c094311c1 100644 --- a/winsup/cygwin/pipe.cc +++ b/winsup/cygwin/pipe.cc @@ -185,7 +185,7 @@ fhandler_pipe::read (void *in_ptr, size_t& in_len) if (th->detach (read_state) && !in_len) in_len = (size_t) -1; /* received a signal */ } - (void) ReleaseMutex (guard); + ReleaseMutex (guard); return; } -- cgit v1.2.3