diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-29 18:58:36 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-29 18:58:36 (GMT) |
commit | 9a298fd1dda2ed9b12e68cc64ccce5c95216fd6a (patch) | |
tree | 881f4544d4eb49a06ebb56d4b68a31aefb79fde3 /tools/lib/h5diff_attr.c | |
parent | 6416329ef8bfc9e1b3f2a0876cd13b83963b13ef (diff) | |
download | hdf5-9a298fd1dda2ed9b12e68cc64ccce5c95216fd6a.zip hdf5-9a298fd1dda2ed9b12e68cc64ccce5c95216fd6a.tar.gz hdf5-9a298fd1dda2ed9b12e68cc64ccce5c95216fd6a.tar.bz2 |
[svn-r16373] replaced some printf statements with parallel_print
tested: linux serial and parallel
Diffstat (limited to 'tools/lib/h5diff_attr.c')
-rw-r--r-- | tools/lib/h5diff_attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_attr.c b/tools/lib/h5diff_attr.c index 747b12c..c527310 100644 --- a/tools/lib/h5diff_attr.c +++ b/tools/lib/h5diff_attr.c @@ -185,7 +185,7 @@ hsize_t diff_attr(hid_t loc1_id, buf1=(void *) HDmalloc((unsigned)(nelmts1*msize1)); buf2=(void *) HDmalloc((unsigned)(nelmts1*msize2)); if ( buf1==NULL || buf2==NULL){ - printf( "cannot read into memory\n" ); + parallel_print( "cannot read into memory\n" ); goto error; } if (H5Aread(attr1_id,mtype1_id,buf1)<0) |