From 3d8893e507ef0c0e129bf6bd517fbb985330469e Mon Sep 17 00:00:00 2001 From: Vaclav Hapla Date: Wed, 22 May 2019 15:25:21 +0200 Subject: [PATCH] Fix #155. Fixup 3a873ea fixing #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 eaf5bab..4bdb37d 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" : params->lustre_stripe_count) ); + PrintKeyValInt("Lustre stripe count", params->lustre_stripe_count); } #endif /* HAVE_LUSTRE_LUSTRE_USER_H */ if (params->deadlineForStonewalling > 0) {