Revert "using a different MACRO"

This reverts commit fc61b7a9f3.
This commit is contained in:
kmu
2019-11-26 17:23:34 -06:00
parent fc61b7a9f3
commit 4c8a2f726a
35 changed files with 98 additions and 103 deletions

View File

@@ -1216,8 +1216,8 @@ test_compound_6(void)
orig = (unsigned char*)HDmalloc(nelmts * sizeof(struct st));
for (i=0; i<(int)nelmts; i++) {
s_ptr = ((struct st*)((void *)orig)) + i;
H5_CHECKED_ASSIGN(s_ptr->b, short, (i*8+1) & 0x7fff, int);
H5_CHECKED_ASSIGN(s_ptr->d, short, (i*8+6) & 0x7fff, int);
ASSIGN_TO_SMALLER_SIZE(s_ptr->b, short, (i*8+1) & 0x7fff, int);
ASSIGN_TO_SMALLER_SIZE(s_ptr->d, short, (i*8+6) & 0x7fff, int);
}
HDmemcpy(buf, orig, nelmts*sizeof(struct st));