summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-06-30 19:47:57 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-06-30 19:47:57 (GMT)
commitb0adb1c3bf674e95681badfe17ab56e7a13f0aad (patch)
tree9debbc0471b5a04497d61dad8ed4482714f2d2db
parent265a1d020947e829c570c051a02761779f37a706 (diff)
downloadhdf5-b0adb1c3bf674e95681badfe17ab56e7a13f0aad.zip
hdf5-b0adb1c3bf674e95681badfe17ab56e7a13f0aad.tar.gz
hdf5-b0adb1c3bf674e95681badfe17ab56e7a13f0aad.tar.bz2
[svn-r8777] Purpose:
changed the name of one dataset, it was confusing Description: Solution: Platforms tested: linux (small) Misc. update:
-rw-r--r--tools/h5dump/h5dumpgentest.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/h5dump/h5dumpgentest.c b/tools/h5dump/h5dumpgentest.c
index 16c3db4..03ef95a 100644
--- a/tools/h5dump/h5dumpgentest.c
+++ b/tools/h5dump/h5dumpgentest.c
@@ -4960,15 +4960,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);
/*-------------------------------------------------------------------------
@@ -5026,6 +5026,7 @@ static void gent_fcontents(void)
+
/*-------------------------------------------------------------------------
* Function: gent_null_space
*