summaryrefslogtreecommitdiffstats
path: root/tools/h5dump.c
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-25 18:52:06 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-25 18:52:06 (GMT)
commit7d7c7af92d64bcba8ce258a313a646cff060b1f0 (patch)
treeacce2e1c4047bd078adfd703fef2b72b13f499a2 /tools/h5dump.c
parentfd376ba0487a47496146e2725bada87453db4efd (diff)
downloadhdf5-7d7c7af92d64bcba8ce258a313a646cff060b1f0.zip
hdf5-7d7c7af92d64bcba8ce258a313a646cff060b1f0.tar.gz
hdf5-7d7c7af92d64bcba8ce258a313a646cff060b1f0.tar.bz2
[svn-r1382]
oooops i forgot to include a case statement in two switch statements (1 in each file) that print the actual data of the enum datasets i had to change a line of h5dump_sprint. when it checks to see that is an enum val isn't an escape sequence i appended this result onto the end of the str
Diffstat (limited to 'tools/h5dump.c')
-rw-r--r--tools/h5dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c
index d5b546c..271a2d5 100644
--- a/tools/h5dump.c
+++ b/tools/h5dump.c
@@ -953,10 +953,10 @@ hid_t type, space;
case H5T_REFERENCE:
dump_data(did, DATASET_DATA);
break;
-/* case H5T_ENUM:
- dump_data(did,ENUM_DATA);
+ case H5T_ENUM:
+ dump_data(did,DATASET_DATA);
break;
-*/
+
default: break;
}