summaryrefslogtreecommitdiffstats
path: root/src/H5B2int.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-25 18:48:51 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:23 (GMT)
commitbb53a566e8a45490b3179290774c3f1450d7d8dd (patch)
treef63980b1e4a4aed7a0a3cf4c3d7a3f83496c10e1 /src/H5B2int.c
parent540e50df2898be8cacc151f9e2930d250337a62f (diff)
downloadhdf5-bb53a566e8a45490b3179290774c3f1450d7d8dd.zip
hdf5-bb53a566e8a45490b3179290774c3f1450d7d8dd.tar.gz
hdf5-bb53a566e8a45490b3179290774c3f1450d7d8dd.tar.bz2
fix issues from previous PR comments
Diffstat (limited to 'src/H5B2int.c')
-rw-r--r--src/H5B2int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2int.c b/src/H5B2int.c
index ea03ed6..ff835eb 100644
--- a/src/H5B2int.c
+++ b/src/H5B2int.c
@@ -239,7 +239,7 @@ H5B2__split1(H5B2_hdr_t *hdr, uint16_t depth, H5B2_node_ptr_t *curr_node_ptr,
old_node_nrec = internal->node_ptrs[idx].node_nrec;
/* Determine "middle" record to promote to internal node */
- mid_record = (uint16_t)(old_node_nrec / 2);
+ ASSIGN_TO_SMALLER_SIZE(mid_record, uint16_t, old_node_nrec / 2, int);
/* Copy "upper half" of records to new child */
H5MM_memcpy(H5B2_NAT_NREC(right_native, hdr, 0),