summaryrefslogtreecommitdiffstats
path: root/tools/h5diff/ph5diff_main.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-03-28 15:44:24 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-03-28 15:44:24 (GMT)
commit98353176a6dd3b8709d95e6643210e79ed5b19c8 (patch)
tree1d65b411863a622f2ca80b50f52b1c6d45cb501b /tools/h5diff/ph5diff_main.c
parentfd88a0006ead7571a652586c9f2eb376123b2f3b (diff)
parentbe4198eb4146dbcd7a380b7fb48980c73b518c74 (diff)
downloadhdf5-98353176a6dd3b8709d95e6643210e79ed5b19c8.zip
hdf5-98353176a6dd3b8709d95e6643210e79ed5b19c8.tar.gz
hdf5-98353176a6dd3b8709d95e6643210e79ed5b19c8.tar.bz2
[svn-r23474] Bring recent trunk changes into the VOL branch including the fix to Ph5diff
Diffstat (limited to 'tools/h5diff/ph5diff_main.c')
-rw-r--r--tools/h5diff/ph5diff_main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/h5diff/ph5diff_main.c b/tools/h5diff/ph5diff_main.c
index 1fc563b..b9bd404 100644
--- a/tools/h5diff/ph5diff_main.c
+++ b/tools/h5diff/ph5diff_main.c
@@ -275,6 +275,9 @@ void h5diff_exit(int status)
if(g_Parallel)
MPI_Finalize();
- exit(status);
+ /* Always exit(0), since MPI implementations do weird stuff when they
+ * receive a non-zero exit value. - QAK
+ */
+ exit(0);
}