[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:
Quincey Koziol 2000-11-30 15:33:09 -05:00
parent f686e853aa
commit 166ae9dabe

View File

@ -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) {