summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Upton <oliver.upton@linux.dev>2024-02-26 20:30:55 +0000
committerOliver Upton <oliver.upton@linux.dev>2024-02-26 20:30:55 +0000
commitda2d6d551a4b185c76b97c85320940a932c57e51 (patch)
tree46ba544bcad108eeea6fe645ded21ab7436f6695
parentda4e9379ebf9a095d599301262be41f23599a7d5 (diff)
downloadaarch64-memcpy-da2d6d551a4b185c76b97c85320940a932c57e51.tar.gz
Fix help msg
Signed-off-by: Oliver Upton <oliver.upton@linux.dev>
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 7249e6d..0c7ecc7 100644
--- a/main.c
+++ b/main.c
@@ -55,8 +55,8 @@ static void pr_help(const char *progname)
printf(" -c CHUNK_SIZE (default: %lu)\n", chunk_size);
printf(" -i ITERATIONS (default: %lu)\n", test_iterations);
printf(" -m MODE (default: %d)\n", test_mode);
- printf(" -t WORKER_THREADS (default: %lu)\n", dcache_worker_threads);
pr_modes();
+ printf(" -t WORKER_THREADS (default: %lu)\n", dcache_worker_threads);
printf(" -H use hugetlb for test buffers\n");
printf(" -h prints this message\n");
}