summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-05-14 04:05:28 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-05-14 04:05:28 (GMT)
commitd16a803257ca2b2d4c03db4c7b5649fed690bfcf (patch)
treed175b5eefe2856a146d902aea089fb9f15e014d4 /src/H5MF.c
parent00a50871bb7e561515f81cebd45c2de03b6cc9d4 (diff)
downloadhdf5-d16a803257ca2b2d4c03db4c7b5649fed690bfcf.zip
hdf5-d16a803257ca2b2d4c03db4c7b5649fed690bfcf.tar.gz
hdf5-d16a803257ca2b2d4c03db4c7b5649fed690bfcf.tar.bz2
[svn-r13750] Description:
Various minor cleanups found while working on the "unique, but sharable" ISOHM changes. Tested on: Mac OS X/32 10.4.9 (amazon) FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index 8dff17d..6d44c69 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -216,6 +216,7 @@ done:
FUNC_LEAVE_NOAPI(ret_value);
}
+
/*-------------------------------------------------------------------------
* Function: H5MF_alloc_overflow
*
@@ -227,10 +228,9 @@ done:
* 1 if overflow would result (the allocation should not be allowed)
*
* Programmer: James Laird
- * Nat Furrer
+ * Nat Furrer
* Tuesday, June 1, 2004
*
- * Modifications:
*-------------------------------------------------------------------------
*/
hbool_t
@@ -267,9 +267,9 @@ H5MF_alloc_overflow(H5F_t *f, hsize_t size)
space_needed = space_needed >> 16;
if(space_needed != 0)
- ret_value=TRUE;
+ ret_value = TRUE;
else
- ret_value=FALSE;
+ ret_value = FALSE;
FUNC_LEAVE_NOAPI(ret_value)
}