summaryrefslogtreecommitdiffstats
path: root/test/h5test.c
diff options
context:
space:
mode:
authorkmu <kmu@hdfgroup.org>2019-11-11 16:49:37 (GMT)
committerkmu <kmu@hdfgroup.org>2019-11-11 16:49:37 (GMT)
commitd06474c4e1ba8628f896e57e619d4b142e6ba8b0 (patch)
treeaa675f077aa48c9356c04e8b8cd573da355de916 /test/h5test.c
parent815611a318b64010e1dc70691a132ee18e0385f5 (diff)
downloadhdf5-d06474c4e1ba8628f896e57e619d4b142e6ba8b0.zip
hdf5-d06474c4e1ba8628f896e57e619d4b142e6ba8b0.tar.gz
hdf5-d06474c4e1ba8628f896e57e619d4b142e6ba8b0.tar.bz2
fix warnings and some text alignment
Diffstat (limited to 'test/h5test.c')
-rw-r--r--test/h5test.c26
1 files changed, 12 insertions, 14 deletions
diff --git a/test/h5test.c b/test/h5test.c
index c8f4132..1faf02d 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -1318,23 +1318,21 @@ 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(%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");
+ 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");
}
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 */