mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[svn-r8711] Fixed bugs in H5I code, updated manifest.
This commit is contained in:
parent
176433836a
commit
a4db480904
1
MANIFEST
1
MANIFEST
@ -1020,6 +1020,7 @@
|
||||
./test/th5s.c
|
||||
./test/th5s.h5
|
||||
./test/theap.c
|
||||
./test/tid.c
|
||||
./test/titerate.c
|
||||
./test/tlayouto.h5
|
||||
./test/tmeta.c
|
||||
|
@ -303,7 +303,7 @@ H5I_type_t H5I_register_type(H5I_type_t type_id, size_t hash_size, unsigned rese
|
||||
if (H5I_next_type < MAX_NUM_TYPES)
|
||||
{
|
||||
ret_value = H5I_next_type;
|
||||
H5I_next_type++;
|
||||
H5_INC_ENUM(H5I_type_t, H5I_next_type);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -330,7 +330,6 @@ H5I_type_t H5I_register_type(H5I_type_t type_id, size_t hash_size, unsigned rese
|
||||
}
|
||||
|
||||
/* Initialize the type */
|
||||
|
||||
/* Check arguments */
|
||||
#ifdef HASH_SIZE_POWER_2
|
||||
if (!POWER_OF_TWO(hash_size) || hash_size == 1)
|
||||
|
Loading…
Reference in New Issue
Block a user