diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-05-03 21:09:52 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-05-03 21:09:52 (GMT) |
commit | 2cf0e9f8822bddab983f764ee669656e1ec61f1e (patch) | |
tree | 55572a6e212fe4600b93df7437db598c7c7d1853 /perform/pio_engine.c | |
parent | 2997ad4c45e70ab44d7eefdc9f18a64154a7d76e (diff) | |
download | hdf5-2cf0e9f8822bddab983f764ee669656e1ec61f1e.zip hdf5-2cf0e9f8822bddab983f764ee669656e1ec61f1e.tar.gz hdf5-2cf0e9f8822bddab983f764ee669656e1ec61f1e.tar.bz2 |
[svn-r5348] Purpose:
Bug Fix
Description:
There was a duplicate declaration of print_indent() in the header and
in the source files.
Solution:
Removed the public declaration and made the function static again.
Platforms tested:
Arabica
Diffstat (limited to 'perform/pio_engine.c')
-rw-r--r-- | perform/pio_engine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perform/pio_engine.c b/perform/pio_engine.c index 9edf499..79f035a 100644 --- a/perform/pio_engine.c +++ b/perform/pio_engine.c @@ -256,10 +256,10 @@ buf_size=MIN(1024*1024, buf_size); GOTOERROR(FAIL); } - if (pio_debug_level >= 4) { + if (pio_debug_level >= 4) /* output all of the times for all iterations */ - output_report(output, "Timer details:\n"); - } + if (myrank == 0) + fprintf(output, "Timer details:\n"); for (nf = 1; nf <= nfiles; nf++) { /* |