From 3a873ea2b0702967f99067b82c05f887ac0757b1 Mon Sep 17 00:00:00 2001 From: "Julian M. Kunkel" Date: Thu, 16 May 2019 19:35:00 +0100 Subject: [PATCH] Fix #150. --- src/ior-output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ior-output.c b/src/ior-output.c index 40764ff..eaf5bab 100644 --- a/src/ior-output.c +++ b/src/ior-output.c @@ -450,7 +450,7 @@ void ShowSetup(IOR_param_t *params) if (params->lustre_set_striping) { PrintKeyVal("Lustre stripe size", ((params->lustre_stripe_size == 0) ? "Use default" : HumanReadable(params->lustre_stripe_size, BASE_TWO))); - PrintKeyVal("stripe count", (params->lustre_stripe_count == 0 ? "Use default" : HumanReadable(params->lustre_stripe_count, BASE_TWO))); + PrintKeyVal("stripe count", (params->lustre_stripe_count == 0 ? "Use default" : params->lustre_stripe_count) ); } #endif /* HAVE_LUSTRE_LUSTRE_USER_H */ if (params->deadlineForStonewalling > 0) {