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/cygheap.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/cygheap.cc') diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 48262ca06..633df7f09 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -162,7 +162,7 @@ cygheap_init () #endif cygheap_max = cygheap; - (void) _csbrk (sizeof (*cygheap)); + _csbrk (sizeof (*cygheap)); } if (!cygheap->fdtab) cygheap->fdtab.init (); @@ -304,7 +304,7 @@ extern "C" void __stdcall cfree (void *s) { assert (!inheap (s)); - (void) _cfree (tocygheap (s)); + _cfree (tocygheap (s)); MALLOC_CHECK; } -- cgit v1.2.3