From 24660e3eeef8c89254a8f109c68c3aab2ad42a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Mon, 14 Feb 2022 13:07:25 -0300 Subject: [PATCH] src: flash: Fix code style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- src/flash/flasher.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/flash/flasher.cpp b/src/flash/flasher.cpp index 7e6ed50b1..1d0e1a159 100644 --- a/src/flash/flasher.cpp +++ b/src/flash/flasher.cpp @@ -168,9 +168,8 @@ void Flasher::flash() } }); - connect(_firmwareProcess.data(), &QProcess::stateChanged, this, [this](QProcess::ProcessState state) { - qCDebug(FLASH) << "New process state:" << state; - }); + connect(_firmwareProcess.data(), &QProcess::stateChanged, this, + [this](QProcess::ProcessState state) { qCDebug(FLASH) << "New process state:" << state; }); _firmwareProcess->setEnvironment(QProcess::systemEnvironment()); _firmwareProcess->setProcessChannelMode(QProcess::MergedChannels);