diff options
author | kmu <kmu@hdfgroup.org> | 2019-12-04 02:52:55 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2019-12-04 02:52:55 (GMT) |
commit | 132fa33dad6badacec90e80768d8dc8e8aa33172 (patch) | |
tree | b296c329b62c9152fce3ca228c121a8cdf55d0c8 /src/H5Olayout.c | |
parent | ea0759d047dc6421da90375a9c27f7cde0a8e117 (diff) | |
download | hdf5-132fa33dad6badacec90e80768d8dc8e8aa33172.zip hdf5-132fa33dad6badacec90e80768d8dc8e8aa33172.tar.gz hdf5-132fa33dad6badacec90e80768d8dc8e8aa33172.tar.bz2 |
fix intel compile warnings
Diffstat (limited to 'src/H5Olayout.c')
-rw-r--r-- | src/H5Olayout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Olayout.c b/src/H5Olayout.c index 138f219..069ee7c 100644 --- a/src/H5Olayout.c +++ b/src/H5Olayout.c @@ -570,7 +570,7 @@ H5O__layout_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p, H5O_LAYOUT_VERSION_3 : mesg->version); /* Layout class */ - *p++ = mesg->type; + H5_CHECKED_ASSIGN(*p++, uint8_t, mesg->type, int); /* Write out layout class specific information */ switch(mesg->type) { |