Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Oct 22, 2024
1 parent 145e1e4 commit 267de25
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/H5private.h
Original file line number Diff line number Diff line change
Expand Up @@ -1114,9 +1114,10 @@ extern char H5_lib_vers_info_g[];
HGOTO_ERROR(H5E_FUNC, H5E_CANTINIT, err, "interface initialization failed"); \
} \
}
#define H5_PACKAGE_NO_INIT(err) /* Mark a package without an init interface call as initialized */
if (H5_UNLIKELY(!H5_PKG_INIT_VAR && !H5_TERM_GLOBAL))
H5_PKG_INIT_VAR = true;
#define H5_PACKAGE_NO_INIT(err) \
/* Mark a package without an init interface call as initialized */ \
if (H5_UNLIKELY(!H5_PKG_INIT_VAR && !H5_TERM_GLOBAL)) \
H5_PKG_INIT_VAR = true;
#define H5_PACKAGE_INIT(pkg_init, err) H5_GLUE3(H5_PACKAGE_, pkg_init, _INIT)(err)
#else /* H5_MY_PKG */
#define H5_PKG_INIT_VAR (true)
Expand Down

0 comments on commit 267de25

Please sign in to comment.