diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-27 15:33:17 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-27 15:33:17 (GMT) |
commit | a6dcbd6a0ffbc17179b83e0910aca3e78b9b706a (patch) | |
tree | 37289d81b4bbf9ed2f4c6acb1931eaa33003a715 /tools/lib/h5diff_dset.c | |
parent | 5cd054dd5c1270a4f6e344ffdb99e8e6e4e1eb71 (diff) | |
download | hdf5-a6dcbd6a0ffbc17179b83e0910aca3e78b9b706a.zip hdf5-a6dcbd6a0ffbc17179b83e0910aca3e78b9b706a.tar.gz hdf5-a6dcbd6a0ffbc17179b83e0910aca3e78b9b706a.tar.bz2 |
[svn-r16358] bug fix
a new line was not inserted at the end of output, causing diff to complain between linux and frebsd
tested: linux , freebsd
Diffstat (limited to 'tools/lib/h5diff_dset.c')
-rw-r--r-- | tools/lib/h5diff_dset.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/lib/h5diff_dset.c b/tools/lib/h5diff_dset.c index d36c65c..1a5778a 100644 --- a/tools/lib/h5diff_dset.c +++ b/tools/lib/h5diff_dset.c @@ -776,6 +776,7 @@ int diff_can_type( hid_t f_tid1, /* file data type */ print_dimensions(rank2,dims2); parallel_print(", max dimensions "); print_dimensions(rank2,maxdim2); + parallel_print("\n"); } can_compare = 0; @@ -820,6 +821,7 @@ int diff_can_type( hid_t f_tid1, /* file data type */ print_dimensions(rank2,dims2); parallel_print(", max dimensions "); print_dimensions(rank2,maxdim2); + parallel_print("\n"); } } |