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_perf.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_perf.c')
-rw-r--r-- | perform/pio_perf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perform/pio_perf.c b/perform/pio_perf.c index f58146b..db6ccc0 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -229,6 +229,7 @@ static void get_minmax(minmax *mm, double val); static minmax accumulate_minmax_stuff(minmax *mm, long raw_size, int count); static int create_comm_world(int num_procs, int *doing_pio); static int destroy_comm_world(void); +static void output_report(FILE *output, const char *fmt, ...); static void print_indent(register FILE *output, register int indent); static void usage(const char *prog); @@ -754,7 +755,7 @@ destroy_comm_world(void) * Programmer: Bill Wendling, 19. December 2001 * Modifications: */ -void +static void output_report(FILE *output, const char *fmt, ...) { int myrank; @@ -778,7 +779,7 @@ output_report(FILE *output, const char *fmt, ...) * Programmer: Bill Wendling, 29. October 2001 * Modifications: */ -void +static void print_indent(register FILE *output, register int indent) { int myrank; |