diff options
author | kmu <kmu@hdfgroup.org> | 2019-11-25 21:17:55 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:23 (GMT) |
commit | 9a3a13cacb2c519a5c4deab817606a743e9ece0d (patch) | |
tree | 301966796df9631e883d1fe728f5e168ca96a353 /src/H5Oginfo.c | |
parent | bb53a566e8a45490b3179290774c3f1450d7d8dd (diff) | |
download | hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.zip hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.tar.gz hdf5-9a3a13cacb2c519a5c4deab817606a743e9ece0d.tar.bz2 |
using a different MACRO
Diffstat (limited to 'src/H5Oginfo.c')
-rw-r--r-- | src/H5Oginfo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Oginfo.c b/src/H5Oginfo.c index 027f33c..f4dfa6d 100644 --- a/src/H5Oginfo.c +++ b/src/H5Oginfo.c @@ -22,13 +22,13 @@ *------------------------------------------------------------------------- */ -#include "H5Omodule.h" /* This source code file is part of the H5O module */ +#include "H5Omodule.h" /* This source code file is part of the H5O module */ -#include "H5private.h" /* Generic Functions */ +#include "H5private.h" /* Generic Functions */ #include "H5Eprivate.h" /* Error handling */ -#include "H5FLprivate.h" /* Free lists */ -#include "H5Opkg.h" /* Object headers */ +#include "H5FLprivate.h" /* Free lists */ +#include "H5Opkg.h" /* Object headers */ /* PRIVATE PROTOTYPES */ @@ -183,7 +183,7 @@ H5O_ginfo_encode(H5F_t H5_ATTR_UNUSED *f, hbool_t H5_ATTR_UNUSED disable_shared, *p++ = H5O_GINFO_VERSION; /* The flags for the group info */ - ASSIGN_TO_SMALLER_SIZE(flags, unsigned char, ginfo->store_link_phase_change ? H5O_GINFO_STORE_PHASE_CHANGE : 0, int); + H5_CHECKED_ASSIGN(flags, unsigned char, ginfo->store_link_phase_change ? H5O_GINFO_STORE_PHASE_CHANGE : 0, int); flags = (unsigned char)(flags | (ginfo->store_est_entry_info ? H5O_GINFO_STORE_EST_ENTRY_INFO : 0)); *p++ = flags; |