Fixed wrong output.

master
Julian M. Kunkel 2018-08-07 23:28:19 +01:00
parent 44ce8e5aaf
commit 54fa3fa8e9
1 changed files with 2 additions and 2 deletions

View File

@ -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");
}