diff options
Diffstat (limited to 'winsup/cygwin/cygheap.cc')
-rw-r--r-- | winsup/cygwin/cygheap.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |