Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 24, 2023
1 parent 3ad3228 commit 3f9bcf1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/H5Fsuper.c
Original file line number Diff line number Diff line change
Expand Up @@ -1076,8 +1076,8 @@ H5F__super_init(H5F_t *f)
FALSE; /* Whether the driver info block has been inserted into the metadata cache */
H5P_genplist_t *plist; /* File creation property list */
H5AC_ring_t orig_ring = H5AC_RING_INV;
hsize_t userblock_size; /* Size of userblock, in bytes */
hsize_t superblock_size = 0; /* Size of superblock, in bytes */
hsize_t userblock_size; /* Size of userblock, in bytes */
hsize_t superblock_size = 0; /* Size of superblock, in bytes */
haddr_t superblock_addr = HADDR_UNDEF;
size_t driver_size; /* Size of driver info block (bytes) */
unsigned super_vers = HDF5_SUPERBLOCK_VERSION_DEF; /* Superblock version for file */
Expand Down Expand Up @@ -1473,7 +1473,8 @@ H5F__super_init(H5F_t *f)
/* Free space in the file allocated for the superblock */
if (H5_addr_defined(superblock_addr)) {
if (H5MF_xfree(f, H5FD_MEM_SUPER, 0, superblock_size) < 0)
HDONE_ERROR(H5E_FILE, H5E_CANTFREE, FAIL, "can't free file space allocated for superblock");
HDONE_ERROR(H5E_FILE, H5E_CANTFREE, FAIL,
"can't free file space allocated for superblock");
if (non_default_fs_settings) {
/*
* For non-default free-space settings, the allocation of
Expand Down

0 comments on commit 3f9bcf1

Please sign in to comment.