diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2013-07-03 22:33:25 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2013-07-03 22:33:25 (GMT) |
commit | dad8a4ddefcd970854c2e27c6c10364bb3f7a625 (patch) | |
tree | f96815bc3dfaf641473ff56f12685c9d4f458960 /perform/sio_perf.c | |
parent | a4dc3ff34d2dec4db339851df381b67970853f2a (diff) | |
download | hdf5-dad8a4ddefcd970854c2e27c6c10364bb3f7a625.zip hdf5-dad8a4ddefcd970854c2e27c6c10364bb3f7a625.tar.gz hdf5-dad8a4ddefcd970854c2e27c6c10364bb3f7a625.tar.bz2 |
[svn-r23863] Remove compile warnings due to missing switch defaults
Diffstat (limited to 'perform/sio_perf.c')
-rw-r--r-- | perform/sio_perf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perform/sio_perf.c b/perform/sio_perf.c index 16e1750..985f3c4 100644 --- a/perform/sio_perf.c +++ b/perform/sio_perf.c @@ -482,6 +482,11 @@ run_test(iotype iot, parameters parms, struct options *opts) case HDF5: output_report("HDF5\n"); break; + default: + /* unknown request */ + HDfprintf(stderr, "Unknown IO type request (%d)\n", (int)iot); + HDassert(0 && "Unknown IO tpe"); + break; } /* allocate space for tables minmax and that it is sufficient */ |