summaryrefslogtreecommitdiffstats
path: root/src/H5Tconv.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-24 19:07:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-24 19:07:43 (GMT)
commit05973a4e8610a7f6893d0eaed9c3eee3b008ba60 (patch)
treefbd503a5480e143e85b8d7283b0f96daf0377976 /src/H5Tconv.c
parentb8ef032be6b1273d7730eb3d6511413716700528 (diff)
downloadhdf5-05973a4e8610a7f6893d0eaed9c3eee3b008ba60.zip
hdf5-05973a4e8610a7f6893d0eaed9c3eee3b008ba60.tar.gz
hdf5-05973a4e8610a7f6893d0eaed9c3eee3b008ba60.tar.bz2
[svn-r14003] Description:
Code cleanup & whitespace fixups Tested on: FreeBSD/32 6.2 (duty) FreeBSD/64 6.2 (liberty) Linux/32 2.6 (kagiso) Mac OS X/32 10.4.10 (amazon)
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r--src/H5Tconv.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c
index e0d878a..075cce8 100644
--- a/src/H5Tconv.c
+++ b/src/H5Tconv.c
@@ -1884,26 +1884,24 @@ done:
* Programmer: Raymond Lu
* 8 June 2007
*
- * Modifications:
*-------------------------------------------------------------------------
*/
H5T_subset_t
H5T_conv_struct_subset(const H5T_cdata_t *cdata)
{
H5T_conv_struct_t *priv;
- H5T_subset_t ret_value=FALSE; /* Return value */
+ H5T_subset_t ret_value = FALSE; /* Return value */
- FUNC_ENTER_NOAPI_NOINIT(H5T_conv_struct_subset);
+ FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5T_conv_struct_subset)
- assert(cdata);
- assert(cdata->priv);
+ HDassert(cdata);
+ HDassert(cdata->priv);
priv = (H5T_conv_struct_t*)(cdata->priv);
ret_value = priv->smembs_subset;
-done:
- FUNC_LEAVE_NOAPI(ret_value);
-}
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5T_conv_struct_subset() */
/*-------------------------------------------------------------------------