diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-19 22:01:00 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-19 22:01:00 (GMT) |
commit | 504e6587ec83e0c98c64ffbb23fc3939798ef93b (patch) | |
tree | c60e39f9736a1df493476de5a1aea231c95db124 /perform | |
parent | 7b1ead095ff66b95e6612e09d7a8c46c1dbc961e (diff) | |
download | hdf5-504e6587ec83e0c98c64ffbb23fc3939798ef93b.zip hdf5-504e6587ec83e0c98c64ffbb23fc3939798ef93b.tar.gz hdf5-504e6587ec83e0c98c64ffbb23fc3939798ef93b.tar.bz2 |
[svn-r4995]
Purpose:
Bone-headed Bug Fix
Description:
There were blanks being put into the output. The cause: the
"print_indent()" routine was printing indents for all of the
processes, but only process 0 should have been printing them out at
all (since process 0 is the one which prints out the reports).
Solution:
Check to make sure that we're process 0 before printing the indents.
Platforms tested:
Linux
Diffstat (limited to 'perform')
-rw-r--r-- | perform/pio_perf.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/perform/pio_perf.c b/perform/pio_perf.c index 4e2da0e..902817c 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -779,10 +779,16 @@ output_report(FILE *output, const char *fmt, ...) static void print_indent(register FILE *output, register int indent) { - indent *= TAB_SPACE; + int myrank; + + MPI_Comm_rank(pio_comm_g, &myrank); - for (; indent > 0; --indent) - fputc(' ', output); + if (myrank == 0) { + indent *= TAB_SPACE; + + for (; indent > 0; --indent) + fputc(' ', output); + } } /* |