mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-07 16:37:56 +08:00
[svn-r3041] Purpose:
Bug fix Description: Compiler on Cray T3E has a weird problem with operations on size_t variables. Solution: Change comparison to make Cray T3E happy. Platforms tested: Cray T3E (mcurie)
This commit is contained in:
parent
f686e853aa
commit
166ae9dabe
@ -5420,7 +5420,7 @@ H5T_set_size(H5T_t *dt, size_t size)
|
|||||||
|
|
||||||
/* Check args */
|
/* Check args */
|
||||||
assert(dt);
|
assert(dt);
|
||||||
assert(size>0);
|
assert(size!=0);
|
||||||
assert(H5T_ENUM!=dt->type || 0==dt->u.enumer.nmembs);
|
assert(H5T_ENUM!=dt->type || 0==dt->u.enumer.nmembs);
|
||||||
|
|
||||||
if (dt->parent) {
|
if (dt->parent) {
|
||||||
|
Loading…
Reference in New Issue
Block a user