Skip to content

Commit

Permalink
src: flash: Fix code style
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed Feb 14, 2022
1 parent e2aa508 commit 24660e3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/flash/flasher.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 24660e3

Please sign in to comment.