From 42fda2bb87203fc75f16888564e1f61d8129497d Mon Sep 17 00:00:00 2001 From: Florian Fischer <florian.fischer@muhq.space> Date: Wed, 13 Oct 2021 13:29:30 +0200 Subject: [PATCH] [Echoclient] properly format parameter output --- apps/EchoClient.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/EchoClient.cpp b/apps/EchoClient.cpp index ac159565..03737953 100644 --- a/apps/EchoClient.cpp +++ b/apps/EchoClient.cpp @@ -427,9 +427,9 @@ static void printSettings() { } else { std::cout << iterations << "iterations"; } - std::cout << ",clients=" << nclients; - std::cout << ",size=" << size; - std::cout << ",sendquit= " << (sendQuit ? "true" : "false"); + std::cout << ", clients=" << nclients; + std::cout << ", size=" << size; + std::cout << ", sendquit=" << (sendQuit ? "true" : "false"); std::cout << "}" << std::endl; } -- GitLab