From: Francis Dupont Date: Thu, 21 May 2020 13:03:13 +0000 (+0200) Subject: [#1147] Add space X-Git-Tag: Kea-1.7.9~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1e4524a0f8a084e20a1c5fffee7ac52fbc6fc5c;p=thirdparty%2Fkea.git [#1147] Add space --- diff --git a/src/lib/util/readwrite_mutex.h b/src/lib/util/readwrite_mutex.h index a76c86fb69..f8766d5af4 100644 --- a/src/lib/util/readwrite_mutex.h +++ b/src/lib/util/readwrite_mutex.h @@ -57,7 +57,7 @@ public: gate1_.wait(lk, [=]() { return (!writeEntered()); }); state_ |= WRITE_ENTERED; // Wait until there are no more readers. - gate2_.wait(lk, [=]() { return (readers() == 0);}); + gate2_.wait(lk, [=]() { return (readers() == 0); }); } /// @brief Unlock write.