diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-07-26 17:28:26 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-07-26 17:28:26 (GMT) |
commit | 69e501fc70450eec20b5f20a248467347b69547c (patch) | |
tree | 7b2b7aff20195e9ec3285db688aa991def2dd31a /src/H5Tdbg.c | |
parent | cb41664db2fdfb7da5cc754a0119364741d0dae4 (diff) | |
download | hdf5-69e501fc70450eec20b5f20a248467347b69547c.zip hdf5-69e501fc70450eec20b5f20a248467347b69547c.tar.gz hdf5-69e501fc70450eec20b5f20a248467347b69547c.tar.bz2 |
[svn-r23938] remove "switch missing default case" in src.
Diffstat (limited to 'src/H5Tdbg.c')
-rw-r--r-- | src/H5Tdbg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Tdbg.c b/src/H5Tdbg.c index e5df7ff..fe204d8 100644 --- a/src/H5Tdbg.c +++ b/src/H5Tdbg.c @@ -237,6 +237,8 @@ H5T_debug(const H5T_t *dt, FILE *stream) case H5T_STATE_OPEN: s2 = "[named,open]"; break; + default: + HDassert(0 && "This Should never be executed!"); } /* end switch */ fprintf(stream, "%s%s {nbytes=%lu", s1, s2, (unsigned long)(dt->shared->size)); |