summaryrefslogtreecommitdiffstats
path: root/src/H5UC.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
commitb2d661b508a7fc7a2592c13bc6bdc175551f075d (patch)
tree13baeb0d83a7c2a4c6299993c182b1227c2f6114 /src/H5UC.c
parent29ab58b58dce556639ea3154e262895773a8a8df (diff)
downloadhdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.zip
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.gz
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.bz2
Clang-format of source files
Diffstat (limited to 'src/H5UC.c')
-rw-r--r--src/H5UC.c26
1 files changed, 11 insertions, 15 deletions
diff --git a/src/H5UC.c b/src/H5UC.c
index dd61539..25f02c9 100644
--- a/src/H5UC.c
+++ b/src/H5UC.c
@@ -21,17 +21,15 @@
*
*/
-
-#include "H5Eprivate.h" /* Error handling */
-#include "H5FLprivate.h" /* Free lists */
-#include "H5UCprivate.h" /* Reference-counted buffers */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5FLprivate.h" /* Free lists */
+#include "H5UCprivate.h" /* Reference-counted buffers */
/* Private typedefs & structs */
/* Declare a free list to manage the H5UC_t struct */
H5FL_DEFINE_STATIC(H5UC_t);
-
/*--------------------------------------------------------------------------
NAME
H5UC_create
@@ -56,7 +54,7 @@ H5FL_DEFINE_STATIC(H5UC_t);
H5UC_t *
H5UC_create(void *o, H5UC_free_func_t free_func)
{
- H5UC_t *ret_value; /* Return value */
+ H5UC_t *ret_value; /* Return value */
FUNC_ENTER_NOAPI(NULL)
@@ -65,19 +63,18 @@ H5UC_create(void *o, H5UC_free_func_t free_func)
HDassert(free_func);
/* Allocate ref-counted string structure */
- if(NULL == (ret_value = H5FL_MALLOC(H5UC_t)))
- HGOTO_ERROR(H5E_RS,H5E_NOSPACE,NULL,"memory allocation failed")
+ if (NULL == (ret_value = H5FL_MALLOC(H5UC_t)))
+ HGOTO_ERROR(H5E_RS, H5E_NOSPACE, NULL, "memory allocation failed")
/* Set the internal fields */
- ret_value->o = o;
- ret_value->n = 1;
+ ret_value->o = o;
+ ret_value->n = 1;
ret_value->free_func = free_func;
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5UC_create() */
-
/*--------------------------------------------------------------------------
NAME
H5UC_decr
@@ -100,7 +97,7 @@ done:
herr_t
H5UC_decr(H5UC_t *rc)
{
- herr_t ret_value = SUCCEED; /* Return value */
+ herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -114,8 +111,8 @@ H5UC_decr(H5UC_t *rc)
rc->n--;
/* Check if we should delete this object now */
- if(rc->n == 0) {
- if((rc->free_func)(rc->o) < 0) {
+ if (rc->n == 0) {
+ if ((rc->free_func)(rc->o) < 0) {
rc = H5FL_FREE(H5UC_t, rc);
HGOTO_ERROR(H5E_RS, H5E_CANTFREE, FAIL, "memory release failed")
} /* end if */
@@ -125,4 +122,3 @@ H5UC_decr(H5UC_t *rc)
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5UC_decr() */
-