Skip to content

Commit

Permalink
Fix Mirror, HDFS and ROS3 case statements for VFD value in H5trace
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendersonHDF committed Sep 30, 2021
1 parent 5b5f0c0 commit 0e3f1c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/H5trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -1084,18 +1084,18 @@ H5_trace_args(H5RS_str_t *rs, const char *type, va_list ap)
break;
#endif
#ifdef H5_HAVE_MIRROR_VFD
case H5_HAVE_MIRROR_VFD:
H5RS_acat(rs, "H5_HAVE_MIRROR_VFD");
case H5_VFD_MIRROR:
H5RS_acat(rs, "H5_VFD_MIRROR");
break;
#endif
#ifdef H5_HAVE_LIBHDFS
case H5_HAVE_LIBHDFS:
H5RS_acat(rs, "H5_HAVE_LIBHDFS");
case H5_VFD_HDFS:
H5RS_acat(rs, "H5_VFD_HDFS");
break;
#endif
#ifdef H5_HAVE_ROS3_VFD
case H5_HAVE_ROS3_VFD:
H5RS_acat(rs, "H5_HAVE_ROS3_VFD");
case H5_VFD_ROS3:
H5RS_acat(rs, "H5_VFD_ROS3");
break;
#endif
default:
Expand Down

0 comments on commit 0e3f1c7

Please sign in to comment.