fix upnp definitions and make cmake silent (#999)

This commit is contained in:
R4SAS 2017-11-14 08:38:45 +03:00 committed by GitHub
parent 20e484bb8b
commit 100f3380c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -165,7 +165,7 @@ namespace log {
while (m_IsRunning)
{
std::shared_ptr<LogMsg> msg;
while (msg = m_Queue.Get ())
while ((msg = m_Queue.Get ()))
Process (msg);
if (m_LogStream) m_LogStream->flush();
if (m_IsRunning)