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/h5dump | |
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/h5dump')
-rw-r--r-- | tools/h5dump/h5dump.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index 2dc89a6..45e90b7 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -1456,7 +1456,7 @@ dump_all(hid_t group, const char *name, void * op_data) indentation(indent + COL); } - if (H5Lget_linkval(group, name, statbuf.linklen, targbuf, H5P_DEFAULT) < 0) { + if (H5Lget_val(group, name, statbuf.linklen, targbuf, H5P_DEFAULT) < 0) { error_msg(progname, "unable to get link value\n"); d_status = EXIT_FAILURE; ret = FAIL; @@ -1555,7 +1555,7 @@ dump_all(hid_t group, const char *name, void * op_data) begin_obj(dump_header_format->extlinkbegin, name, dump_header_format->extlinkblockbegin); } - if (H5Lget_linkval(group, name, statbuf.linklen, targbuf, H5P_DEFAULT) < 0) { + if (H5Lget_val(group, name, statbuf.linklen, targbuf, H5P_DEFAULT) < 0) { error_msg(progname, "unable to get external link value\n"); d_status = EXIT_FAILURE; ret = FAIL; @@ -3227,7 +3227,7 @@ handle_links(hid_t fid, char *links, void UNUSED * data) dump_header_format->softlinkblockbegin); indentation(COL); - if(H5Lget_linkval(fid, links, statbuf.linklen, buf, H5P_DEFAULT) >= 0) { + if(H5Lget_val(fid, links, statbuf.linklen, buf, H5P_DEFAULT) >= 0) { printf("LINKTARGET \"%s\"\n", buf); } else { error_msg(progname, "h5dump error: unable to get link value for \"%s\"\n", @@ -3247,7 +3247,7 @@ handle_links(hid_t fid, char *links, void UNUSED * data) case H5L_TYPE_EXTERNAL: begin_obj(dump_header_format->extlinkbegin, links, dump_header_format->extlinkblockbegin); - if (H5Lget_linkval(fid, links, statbuf.linklen, buf, H5P_DEFAULT) >= 0) { + if(H5Lget_val(fid, links, statbuf.linklen, buf, H5P_DEFAULT) >= 0) { if(H5Lunpack_elink_val(buf, statbuf.linklen, &elink_file, &elink_path)>=0) { indentation(COL); printf("LINKCLASS %d\n", linfo.type); |