diff options
author | Christopher Faylor <me@cgf.cx> | 2005-07-06 20:05:03 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-07-06 20:05:03 +0000 |
commit | 0c55f6ed60a0b1b9c6ac47f8726191e48f90c052 (patch) | |
tree | bddbfd9cddc82d403fbfaa4f619e8f14c47159fe /winsup/cygwin/pipe.cc | |
parent | dee9edd9ed9fbe5f97367ad04d4203729e02ca9a (diff) | |
download | cygnal-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.tar.gz cygnal-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.tar.bz2 cygnal-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.zip |
Eliminate (void) cast on standalone function calls throughout.
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r-- | winsup/cygwin/pipe.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |