diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-06-28 18:12:25 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-06-28 18:12:25 (GMT) |
commit | 903bc4b9555f0a392186fda0a9fb94252cfe2033 (patch) | |
tree | 0ef69ccc2b644c2e9fe51e84a618ad762a020f31 /tools | |
parent | 43af17182c549637324c278daa2cc845316cdb07 (diff) | |
download | hdf5-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')
-rw-r--r-- | tools/h5tools.c | 4 |
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; } |