diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2011-10-07 15:24:56 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2011-10-07 15:24:56 (GMT) |
commit | 0d8bd0c44d3b177e98e4a17db08d6eaee288b463 (patch) | |
tree | 862bdc63a727df71fb0b74e6f3d14950c39f56e5 /perform/pio_perf.c | |
parent | 1f115749c4e53c2cd83744fd4008897b3cb96e77 (diff) | |
download | hdf5-0d8bd0c44d3b177e98e4a17db08d6eaee288b463.zip hdf5-0d8bd0c44d3b177e98e4a17db08d6eaee288b463.tar.gz hdf5-0d8bd0c44d3b177e98e4a17db08d6eaee288b463.tar.bz2 |
[svn-r21484] Add HDprefix and change when pio_timer.h is included
Tested
Diffstat (limited to 'perform/pio_perf.c')
-rw-r--r-- | perform/pio_perf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perform/pio_perf.c b/perform/pio_perf.c index d3e2531..411fb12 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -1312,11 +1312,11 @@ parse_command_line(int argc, char *argv[]) if (isalnum(*end) && i < 10) buf[i++] = *end; - if (!strcasecmp(buf, "phdf5")) { + if (!HDstrcasecmp(buf, "phdf5")) { cl_opts->io_types |= PIO_HDF5; - } else if (!strcasecmp(buf, "mpiio")) { + } else if (!HDstrcasecmp(buf, "mpiio")) { cl_opts->io_types |= PIO_MPI; - } else if (!strcasecmp(buf, "posix")) { + } else if (!HDstrcasecmp(buf, "posix")) { cl_opts->io_types |= PIO_POSIX; } else { fprintf(stderr, "pio_perf: invalid --api option %s\n", |