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/debug.h | |
parent | dee9edd9ed9fbe5f97367ad04d4203729e02ca9a (diff) | |
download | newlib-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.zip newlib-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.tar.gz newlib-0c55f6ed60a0b1b9c6ac47f8726191e48f90c052.tar.bz2 |
Eliminate (void) cast on standalone function calls throughout.
Diffstat (limited to 'winsup/cygwin/debug.h')
-rw-r--r-- | winsup/cygwin/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/debug.h b/winsup/cygwin/debug.h index 796eeec..94d4c5a 100644 --- a/winsup/cygwin/debug.h +++ b/winsup/cygwin/debug.h @@ -13,7 +13,7 @@ details. */ #include "dlmalloc.h" #define MALLOC_CHECK ({\ debug_printf ("checking malloc pool");\ - (void) mallinfo ();\ + mallinfo ();\ }) #endif |