aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/miscfuncs.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-07-06 20:05:03 +0000
committerChristopher Faylor <me@cgf.cx>2005-07-06 20:05:03 +0000
commit0c55f6ed60a0b1b9c6ac47f8726191e48f90c052 (patch)
treebddbfd9cddc82d403fbfaa4f619e8f14c47159fe /winsup/cygwin/miscfuncs.cc
parentdee9edd9ed9fbe5f97367ad04d4203729e02ca9a (diff)
downloadnewlib-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.zip
newlib-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.tar.gz
newlib-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.tar.bz2
Eliminate (void) cast on standalone function calls throughout.
Diffstat (limited to 'winsup/cygwin/miscfuncs.cc')
-rw-r--r--winsup/cygwin/miscfuncs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc
index 531d2b1..18e8bb1 100644
--- a/winsup/cygwin/miscfuncs.cc
+++ b/winsup/cygwin/miscfuncs.cc
@@ -193,7 +193,7 @@ check_iovec (const struct iovec *iov, int iovcnt, bool forwrite)
else if (!forwrite)
*p = dummytest (p);
else
- (void) dummytest (p);
+ dummytest (p);
iov++;
iovcnt--;