diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-08-27 21:49:10 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-08-27 21:49:10 (GMT) |
commit | 09d13b3c13dfc3fa79a7d616d80a06183fb05cc9 (patch) | |
tree | 3e9a7eefca55dee039664b454f15a7aa87521142 /tools/test/perform/overhead.c | |
parent | 369d17c05c57689338a22988df90bfb8313da071 (diff) | |
download | hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.zip hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.tar.gz hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.tar.bz2 |
OESS-29 Fix HD prefix in perform and enable test compile
Diffstat (limited to 'tools/test/perform/overhead.c')
-rw-r--r-- | tools/test/perform/overhead.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/test/perform/overhead.c b/tools/test/perform/overhead.c index 81f9de6..108d9e4 100644 --- a/tools/test/perform/overhead.c +++ b/tools/test/perform/overhead.c @@ -84,9 +84,9 @@ typedef enum fill_t { static void usage(const char *prog) { - fprintf(stderr, "usage: %s [STYLE|cache] [LEFT [MIDDLE [RIGHT]]]\n", + HDfprintf(stderr, "usage: %s [STYLE|cache] [LEFT [MIDDLE [RIGHT]]]\n", prog); - fprintf(stderr, "\ + HDfprintf(stderr, "\ STYLE is the order that the dataset is filled and should be one of:\n\ forward -- Fill the dataset from lowest address to highest\n\ address. This style tests the right split ratio.\n\ @@ -401,6 +401,6 @@ main(int argc, char *argv[]) return 0; error: - fprintf(stderr, "*** ERRORS DETECTED ***\n"); + HDfprintf(stderr, "*** ERRORS DETECTED ***\n"); return 1; } |