diff options
author | kmu <kmu@hdfgroup.org> | 2019-11-26 23:24:24 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:24 (GMT) |
commit | 3e4a99d17dcf2ed3df324513114fed58fe9272c6 (patch) | |
tree | 3092f832d185062f062347b172104ad0b95b17cf /test | |
parent | 71610c9677f34c7e0aaaf40dedd49fb4671cdd44 (diff) | |
download | hdf5-3e4a99d17dcf2ed3df324513114fed58fe9272c6.zip hdf5-3e4a99d17dcf2ed3df324513114fed58fe9272c6.tar.gz hdf5-3e4a99d17dcf2ed3df324513114fed58fe9272c6.tar.bz2 |
Revert "fix warnings and some text alignment"
This reverts commit d06474c4e1ba8628f896e57e619d4b142e6ba8b0.
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.c | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/test/h5test.c b/test/h5test.c index e1f0116..abed4be 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -1329,21 +1329,23 @@ h5_dump_info_object(MPI_Info info) { char key[MPI_MAX_INFO_KEY+1]; char value[MPI_MAX_INFO_VAL+1]; - int flag; - int i, nkeys; + int flag; + int i, nkeys; - HDprintf("Dumping MPI Info Object (up to %d bytes per item):\n", MPI_MAX_INFO_VAL); - if (info==MPI_INFO_NULL) { - HDprintf("object is MPI_INFO_NULL\n"); + HDprintf("Dumping MPI Info Object(%d) (up to %d bytes per item):\n", (int)info, + MPI_MAX_INFO_VAL); + if (info==MPI_INFO_NULL){ + HDprintf("object is MPI_INFO_NULL\n"); } else { - MPI_Info_get_nkeys(info, &nkeys); - HDprintf("object has %d items\n", nkeys); - for (i=0; i<nkeys; i++) { - MPI_Info_get_nthkey(info, i, key); - MPI_Info_get(info, key, MPI_MAX_INFO_VAL, value, &flag); - HDprintf("%s=%s\n", key, value); - } + MPI_Info_get_nkeys(info, &nkeys); + HDprintf("object has %d items\n", nkeys); + for (i=0; i<nkeys; i++){ + MPI_Info_get_nthkey(info, i, key); + MPI_Info_get(info, key, MPI_MAX_INFO_VAL, value, &flag); + HDprintf("%s=%s\n", key, value); + } + } } #endif /* H5_HAVE_PARALLEL */ |