Skip to content

Commit

Permalink
Fix compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jyavenard committed May 9, 2012
1 parent d6ed457 commit 114baec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/serverpool.cpp
Expand Up @@ -98,7 +98,7 @@ void ServerPool::SelectDefaultListen(bool force)
QList<QNetworkInterface>::const_iterator qni;
for (qni = IFs.begin(); qni != IFs.end(); ++qni)
{
if (qni->flags() & QNetworkInterface::IsRunning == 0)
if ((qni->flags() & QNetworkInterface::IsRunning) == 0)
continue;

QList<QNetworkAddressEntry> IPs = qni->addressEntries();
Expand Down

0 comments on commit 114baec

Please sign in to comment.