diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-28 05:47:19 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-28 05:47:19 (GMT) |
commit | 7aa4f5781198f5f93bc377e6fabe2b58b152ad14 (patch) | |
tree | f0293d99166ae14c135ae4afcd1ae7cbf61626ca /src/H5B.c | |
parent | 84e5e6fd28789bb1ae5edd5e0c9f2e9f210a4449 (diff) | |
download | hdf5-7aa4f5781198f5f93bc377e6fabe2b58b152ad14.zip hdf5-7aa4f5781198f5f93bc377e6fabe2b58b152ad14.tar.gz hdf5-7aa4f5781198f5f93bc377e6fabe2b58b152ad14.tar.bz2 |
[svn-r178] Changes since 19980127
----------------------
./Makefile.in
./config/commence.in
With GNU make you can now use `-j' and `-l' options and things
get built correctly. I can do a `make -j -l6 test' from a
clean hdf5 source tree (after configure) in 45 seconds (8 to
build dependencies, 26 to compile everything, and 11 to run
the tests).
./src/H5Gnode.c
Removed a comment that no longer applies.
./src/H5P.c
./src/H5Pprivate.h
./src/H5Ppublic.h
Changed H5Pselect_hyperslab() to H5Pset_hyperslab() and added
H5Pget_hyperslab() and H5P_get_hyperslab().
Replaced a couple short memset() calls with a for loop.
Removed `if (foo!=NULL)' from around H5MM_xfree() calls.
Clear hslab_def when the hyperslab disappears.
./src/H5Tpublic.h
Removed trailing enum comma.
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -772,7 +772,7 @@ H5B_insert(H5F_t *f, const H5B_class_t *type, const haddr_t *addr, if ((my_ins = H5B_insert_helper(f, addr, type, lt_key, <_key_changed, md_key, udata, rt_key, &rt_key_changed, - &child /*out */ )) < 0 || my_ins < 0) { + &child/*out*/ )) < 0 || my_ins < 0) { HRETURN_ERROR(H5E_BTREE, H5E_CANTINIT, FAIL, "unable to insert key"); } @@ -1094,9 +1094,9 @@ H5B_insert_helper(H5F_t *f, const haddr_t *addr, const H5B_class_t *type, bt->key[idx].nkey, lt_key_changed, md_key, udata, bt->key[idx + 1].nkey, rt_key_changed, - &child_addr /*out */ )) < 0) { + &child_addr/*out*/)) < 0) { HGOTO_ERROR(H5E_BTREE, H5E_CANTINSERT, H5B_INS_ERROR, - "can't insert first leaf node"); + "unable to insert first leaf node"); } } else { my_ins = H5B_INS_NOOP; |