summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-04-03 16:10:05 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-04-03 16:10:05 (GMT)
commit2b1ad857ed987d4a983b829458a70f1116de5b17 (patch)
tree16ac131edef5e5c5d6f615b631cc5a9bb0224754
parentfdbbc9f09c33eb10be6c9ccb31601299f72184a3 (diff)
downloadhdf5-2b1ad857ed987d4a983b829458a70f1116de5b17.zip
hdf5-2b1ad857ed987d4a983b829458a70f1116de5b17.tar.gz
hdf5-2b1ad857ed987d4a983b829458a70f1116de5b17.tar.bz2
[svn-r13576]
bug fix a call was made to printf instead of parallel_print tested linux parallel
-rw-r--r--tools/lib/h5diff_dset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_dset.c b/tools/lib/h5diff_dset.c
index 2360c70..ef6d39f 100644
--- a/tools/lib/h5diff_dset.c
+++ b/tools/lib/h5diff_dset.c
@@ -241,7 +241,7 @@ hsize_t diff_datasetid( hid_t did1,
if (storage_size1==0 || storage_size2==0)
{
if (options->m_verbose && obj1_name && obj2_name)
- printf("<%s> or <%s> are empty datasets\n", obj1_name, obj2_name);
+ parallel_print("<%s> or <%s> are empty datasets\n", obj1_name, obj2_name);
cmp=0;
options->not_cmp=1;
}