diff options
author | James Laird <jlaird@hdfgroup.org> | 2007-01-09 22:08:54 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2007-01-09 22:08:54 (GMT) |
commit | a2a3e47d06ce348ce27718b4a3e0e4b156fba6f5 (patch) | |
tree | 423182103eab823f0af546780628fd034cd903b9 /src/H5Oalloc.c | |
parent | 26d2abe9e87a051cd897f77a4a472a432675db8c (diff) | |
download | hdf5-a2a3e47d06ce348ce27718b4a3e0e4b156fba6f5.zip hdf5-a2a3e47d06ce348ce27718b4a3e0e4b156fba6f5.tar.gz hdf5-a2a3e47d06ce348ce27718b4a3e0e4b156fba6f5.tar.bz2 |
[svn-r13129] More refactoring. Moved index versions to the index header, so that an
index can be read all at once. This changes the file format!
Tested on Windows, kagiso, and smirom.
Diffstat (limited to 'src/H5Oalloc.c')
-rw-r--r-- | src/H5Oalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Oalloc.c b/src/H5Oalloc.c index 1368e84..b1a81aa 100644 --- a/src/H5Oalloc.c +++ b/src/H5Oalloc.c @@ -670,11 +670,11 @@ H5O_alloc_new_chunk(H5F_t *f, (found_attr < 0 || oh->mesg[u].raw_size < oh->mesg[found_attr].raw_size)) found_attr = u; -/* } else if(H5O_LINK_ID == msg_id) { + } else if(H5O_LINK_ID == msg_id) { if(oh->mesg[u].raw_size >= cont_size && (found_link < 0 || oh->mesg[u].raw_size < oh->mesg[found_link].raw_size)) - found_link = u; JAMES */ + found_link = u; } else { if(oh->mesg[u].raw_size >= cont_size && (found_other < 0 || |