summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2009-10-21 00:34:06 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2009-10-21 00:34:06 (GMT)
commite0b41d0b015c4899402018df2018d63c095e4ac7 (patch)
tree52a96680940b8bf6995c876e4330d62cc5a0ef11 /tools/h5repack/h5repack.c
parentbb5633b566d3fbef9d1d59a7fac0251a560865cb (diff)
downloadhdf5-e0b41d0b015c4899402018df2018d63c095e4ac7.zip
hdf5-e0b41d0b015c4899402018df2018d63c095e4ac7.tar.gz
hdf5-e0b41d0b015c4899402018df2018d63c095e4ac7.tar.bz2
[svn-r17703] Bug fix: (1192)
Changed exit(1) to exit(EXIT_FAILURE) and exit(0) to exit(EXIT_SUCCESS) for better coding. Tested: jam.
Diffstat (limited to 'tools/h5repack/h5repack.c')
-rw-r--r--tools/h5repack/h5repack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c
index e6b95a0..c67eb0a 100644
--- a/tools/h5repack/h5repack.c
+++ b/tools/h5repack/h5repack.c
@@ -652,7 +652,7 @@ static const char* get_sfilter(H5Z_filter_t filtn)
return "SOFF";
else {
error_msg(progname, "input error in filter type\n");
- exit(1);
+ exit(EXIT_FAILURE);
}
}