From 54fa3fa8e99668c4d6e44c94b9d4bc0b1346ed47 Mon Sep 17 00:00:00 2001 From: "Julian M. Kunkel" Date: Tue, 7 Aug 2018 23:28:19 +0100 Subject: [PATCH] Fixed wrong output. --- src/ior-output.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ior-output.c b/src/ior-output.c index 27810d7..932780b 100644 --- a/src/ior-output.c +++ b/src/ior-output.c @@ -416,9 +416,9 @@ void ShowSetup(IOR_param_t *params) PrintKeyVal("apiVersion", params->apiVersion); PrintKeyVal("test filename", params->testFileName); PrintKeyVal("access", params->filePerProc ? "file-per-process" : "single-shared-file"); - PrintKeyVal("type", params->collective == FALSE ? "independent" : "collective"); + PrintKeyVal("type", params->collective ? "collective" : "independent"); PrintKeyValInt("segments", params->segmentCount); - PrintKeyVal("ordering in a file", params->randomOffset ? "sequential" : "random"); + PrintKeyVal("ordering in a file", params->randomOffset ? "random" : "sequential"); if (params->reorderTasks == FALSE && params->reorderTasksRandom == FALSE) { PrintKeyVal("ordering inter file", "no tasks offsets"); }