summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/dynlib_vrpk.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2016-10-21 19:23:02 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2016-10-21 19:23:02 (GMT)
commit0235ea066df4f60a9fd3f0237eeea5e38b135d69 (patch)
tree440deb6c50827a0984223991bb835cde8248a5c3 /tools/h5repack/dynlib_vrpk.c
parent22fe9fe1944bc370f99f7dd013ea6c805381c2c4 (diff)
downloadhdf5-0235ea066df4f60a9fd3f0237eeea5e38b135d69.zip
hdf5-0235ea066df4f60a9fd3f0237eeea5e38b135d69.tar.gz
hdf5-0235ea066df4f60a9fd3f0237eeea5e38b135d69.tar.bz2
Change return statement format
Diffstat (limited to 'tools/h5repack/dynlib_vrpk.c')
-rw-r--r--tools/h5repack/dynlib_vrpk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/h5repack/dynlib_vrpk.c b/tools/h5repack/dynlib_vrpk.c
index 8da0270..97cb211 100644
--- a/tools/h5repack/dynlib_vrpk.c
+++ b/tools/h5repack/dynlib_vrpk.c
@@ -67,19 +67,19 @@ H5Z_filter_dynlib4(unsigned int flags, size_t cd_nelmts,
/* Check for the library version */
if(H5get_libversion(&ver_info[0], &ver_info[1], &ver_info[2]) < 0) {
PUSH_ERR("dynlib4", H5E_CALLBACK, "H5get_libversion");
- return(0);
+ return 0;
}
/* Check for the correct number of parameters */
if(cd_nelmts == 0)
- return(0);
+ return 0;
/* Check that permanent parameters are set correctly */
if(cd_values[0] > 9)
- return(0);
+ return 0;
if(ver_info[0] != cd_values[1] || ver_info[1] != cd_values[2]) {
PUSH_ERR("dynlib4", H5E_CALLBACK, "H5get_libversion does not match");
- return(0);
+ return 0;
}
add_on = (int)cd_values[0];