summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-06-30 19:45:31 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-06-30 19:45:31 (GMT)
commit23ea43d9c811c0ef531754bf24974902ea6412fa (patch)
treeba405126af0dbef4ebc6524454ec93837363bba7
parent10834e1e8f3dee6f863d655d4eddf0c824a94fd6 (diff)
downloadhdf5-23ea43d9c811c0ef531754bf24974902ea6412fa.zip
hdf5-23ea43d9c811c0ef531754bf24974902ea6412fa.tar.gz
hdf5-23ea43d9c811c0ef531754bf24974902ea6412fa.tar.bz2
[svn-r8776] Purpose:
changed the name of the dataset for the link file contents example, it was confusing Description: Solution: Platforms tested: linux (small change) Misc. update:
-rw-r--r--tools/h5dump/h5dumpgentest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5dump/h5dumpgentest.c b/tools/h5dump/h5dumpgentest.c
index 353851c..c860ce0 100644
--- a/tools/h5dump/h5dumpgentest.c
+++ b/tools/h5dump/h5dumpgentest.c
@@ -4965,15 +4965,15 @@ static void gent_fcontents(void)
*/
/* soft link to "dset" */
- ret=H5Glink (fid, H5G_LINK_SOFT, "dset", "slink to dset");
+ ret=H5Glink (fid, H5G_LINK_SOFT, "dset", "softlink");
assert(ret>=0);
/* hard link to "dset" */
- ret=H5Glink (fid, H5G_LINK_HARD, "dset", "hlink to dset");
+ ret=H5Glink (fid, H5G_LINK_HARD, "dset", "dset1");
assert(ret>=0);
/* soft link to itself */
- ret=H5Glink (fid, H5G_LINK_SOFT, "link", "link");
+ ret=H5Glink (fid, H5G_LINK_SOFT, "mylink", "mylink");
assert(ret>=0);
/*-------------------------------------------------------------------------