summaryrefslogtreecommitdiffstats
path: root/tools/h5tools.c
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-28 18:12:25 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-28 18:12:25 (GMT)
commit903bc4b9555f0a392186fda0a9fb94252cfe2033 (patch)
tree0ef69ccc2b644c2e9fe51e84a618ad762a020f31 /tools/h5tools.c
parent43af17182c549637324c278daa2cc845316cdb07 (diff)
downloadhdf5-903bc4b9555f0a392186fda0a9fb94252cfe2033.zip
hdf5-903bc4b9555f0a392186fda0a9fb94252cfe2033.tar.gz
hdf5-903bc4b9555f0a392186fda0a9fb94252cfe2033.tar.bz2
[svn-r1391]
added a break for the H5T_ENUM case in the switch in the dump_simple_dset
Diffstat (limited to 'tools/h5tools.c')
-rw-r--r--tools/h5tools.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/h5tools.c b/tools/h5tools.c
index 3a09819..c1fd6a3 100644
--- a/tools/h5tools.c
+++ b/tools/h5tools.c
@@ -1344,7 +1344,9 @@ h5dump_simple_dset(FILE *stream, const h5dump_t *info, hid_t dset,
case H5T_ENUM:
display_numeric_data(hs_nelmts, p_type, sm_buf, p_type_nbytes,
p_nelmts, dim_n_size, elmtno, dset);
- default:
+ break;
+
+ default:
break;
}