mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
OESS-168: Remove clang warnings. (#1304)
This commit is contained in:
parent
9e6de287e7
commit
a564ec39af
@ -304,8 +304,12 @@ H5FD_ros3_init(void)
|
||||
HDfprintf(stdout, "H5FD_ros3_init() called.\n");
|
||||
#endif
|
||||
|
||||
if (H5I_VFL != H5I_get_type(H5FD_ROS3_g))
|
||||
if (H5I_VFL != H5I_get_type(H5FD_ROS3_g)) {
|
||||
H5FD_ROS3_g = H5FD_register(&H5FD_ros3_g, sizeof(H5FD_class_t), FALSE);
|
||||
if (H5I_INVALID_HID == H5FD_ROS3_g) {
|
||||
HGOTO_ERROR(H5E_ID, H5E_CANTREGISTER, H5I_INVALID_HID, "unable to register ros3");
|
||||
}
|
||||
}
|
||||
|
||||
#if ROS3_STATS
|
||||
/* pre-compute statsbin boundaries
|
||||
|
Loading…
Reference in New Issue
Block a user