From: Soeren Apel Date: Wed, 21 Feb 2018 17:46:29 +0000 (+0100) Subject: Tiny whitespace fix X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=0fb98cf80d570478f2c4b97adcb3a12318993464 Tiny whitespace fix --- diff --git a/pv/session.cpp b/pv/session.cpp index ca72e9b0..4d72af33 100644 --- a/pv/session.cpp +++ b/pv/session.cpp @@ -426,7 +426,7 @@ void Session::set_default_device() // Try and find the demo device and select that by default const auto iter = find_if(devices.begin(), devices.end(), [] (const shared_ptr &d) { - return d->hardware_device()->driver()->name() == "demo"; }); + return d->hardware_device()->driver()->name() == "demo"; }); set_device((iter == devices.end()) ? devices.front() : *iter); }