diff options
Diffstat (limited to 'src/H5Bcache.c')
-rw-r--r-- | src/H5Bcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Bcache.c b/src/H5Bcache.c index e577dc2..e19efb4 100644 --- a/src/H5Bcache.c +++ b/src/H5Bcache.c @@ -333,10 +333,10 @@ H5B_dest(H5F_t UNUSED *f, H5B_t *bt) HDassert(bt); HDassert(bt->rc_shared); - H5FL_SEQ_FREE(haddr_t,bt->child); - (void)H5FL_BLK_FREE(native_block,bt->native); + H5FL_SEQ_FREE(haddr_t, bt->child); + (void)H5FL_BLK_FREE(native_block, bt->native); H5RC_DEC(bt->rc_shared); - H5FL_FREE(H5B_t,bt); + (void)H5FL_FREE(H5B_t, bt); FUNC_LEAVE_NOAPI(SUCCEED) } /* end H5B_dest() */ |