Skip to content

Commit d64b7be

Browse files
committed
Fix the formatting
1 parent a792094 commit d64b7be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/src/O2ControlHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ void dumpQcConfig(std::ostream& dumpOut, const DeviceExecution& execution, const
204204
{
205205
// get the argument `--config`
206206
std::string configPath;
207-
auto it = std::find_if(execution.args.begin(), execution.args.end(), [&](char* v) { if (v) return strcmp(v, "--config") == 0; else return false; });
207+
auto it = std::find_if(execution.args.begin(), execution.args.end(), [&](char* v) { if (v) { return strcmp(v, "--config") == 0;} else {return false;} });
208208

209209
// get the next argument and find `/o2/components/` in it, then take what comes after in the string.
210210
if (it != execution.args.end()) {

0 commit comments

Comments
 (0)