diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-06 17:05:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-06 17:05:16 (GMT) |
commit | 5adf1ee1bab95cce501257e538b638a75c9e72fa (patch) | |
tree | 33102c066b0e6e0a5d9e09b373a604106e4806e2 /tools/lib/h5diff.c | |
parent | 30aad1fd3e4c12d97fdd90bbcae3db7f89eb6ec0 (diff) | |
download | hdf5-5adf1ee1bab95cce501257e538b638a75c9e72fa.zip hdf5-5adf1ee1bab95cce501257e538b638a75c9e72fa.tar.gz hdf5-5adf1ee1bab95cce501257e538b638a75c9e72fa.tar.bz2 |
[svn-r12864] Description:
Changed H5Lget_linkval() to H5Lget_val(), per our design discussion last
Friday afternoon.
Tested on:
Linux/32 2.6 (chicago)
Diffstat (limited to 'tools/lib/h5diff.c')
-rw-r--r-- | tools/lib/h5diff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index 5fa88bd..7070898 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -1090,12 +1090,12 @@ hsize_t diff (hid_t file1_id, buf1 = HDmalloc (li1.u.link_size); buf2 = HDmalloc (li2.u.link_size); - if (H5Lget_linkval (file1_id, path1, li1.u.link_size, buf1, H5P_DEFAULT) < 0) + if(H5Lget_val(file1_id, path1, li1.u.link_size, buf1, H5P_DEFAULT) < 0) { HDfree (buf1); HDfree (buf2); goto out; } - if (H5Lget_linkval (file2_id, path2, li2.u.link_size, buf2, H5P_DEFAULT) < 0) + if(H5Lget_val(file2_id, path2, li2.u.link_size, buf2, H5P_DEFAULT) < 0) { HDfree (buf1); HDfree (buf2); goto out; @@ -1104,12 +1104,12 @@ hsize_t diff (hid_t file1_id, /* If the buffers are the same size, compare them */ if(li1.u.link_size == li2.u.link_size) { - if (H5Lget_linkval (file1_id, path1, li1.u.link_size, buf1, H5P_DEFAULT) < 0) + if(H5Lget_val(file1_id, path1, li1.u.link_size, buf1, H5P_DEFAULT) < 0) { HDfree (buf1); HDfree (buf2); goto out; } - if (H5Lget_linkval (file2_id, path2, li2.u.link_size, buf2, H5P_DEFAULT) < 0) + if(H5Lget_val(file2_id, path2, li2.u.link_size, buf2, H5P_DEFAULT) < 0) { HDfree (buf1); HDfree (buf2); goto out; |