summaryrefslogtreecommitdiffstats
path: root/src/H5MM.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5MM.c')
-rw-r--r--src/H5MM.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/H5MM.c b/src/H5MM.c
index afe7a3a..6688ff8 100644
--- a/src/H5MM.c
+++ b/src/H5MM.c
@@ -239,8 +239,6 @@ done:
* matzke@llnl.gov
* Jul 10 1997
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
void *
@@ -249,8 +247,8 @@ H5MM_xfree(void *mem)
/* Use FUNC_ENTER_NOAPI_NOINIT_NOFUNC here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5MM_xfree);
- if (mem)
+ if(mem)
HDfree(mem);
FUNC_LEAVE_NOAPI(NULL);
-}
+} /* end H5MM_xfree() */