diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-06-25 18:52:06 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-06-25 18:52:06 (GMT) |
commit | 7d7c7af92d64bcba8ce258a313a646cff060b1f0 (patch) | |
tree | acce2e1c4047bd078adfd703fef2b72b13f499a2 /tools/h5dump.c | |
parent | fd376ba0487a47496146e2725bada87453db4efd (diff) | |
download | hdf5-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.c | 6 |
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; } |