diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-30 20:33:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-30 20:33:09 (GMT) |
commit | 166ae9dabe6e2467e5e59f9a32551ca52fe058b4 (patch) | |
tree | 4b7b8c6e755e8626f0c4a580546dc8444cb81ff1 /src | |
parent | f686e853aaeddc164cd85f722b4c6b32f715efc8 (diff) | |
download | hdf5-166ae9dabe6e2467e5e59f9a32551ca52fe058b4.zip hdf5-166ae9dabe6e2467e5e59f9a32551ca52fe058b4.tar.gz hdf5-166ae9dabe6e2467e5e59f9a32551ca52fe058b4.tar.bz2 |
[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)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5T.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5420,7 +5420,7 @@ H5T_set_size(H5T_t *dt, size_t size) /* Check args */ assert(dt); - assert(size>0); + assert(size!=0); assert(H5T_ENUM!=dt->type || 0==dt->u.enumer.nmembs); if (dt->parent) { |