Fixed compiler warnings on macOS (and Linux)

This commit is contained in:
Casey Langen 2017-02-02 20:54:29 -08:00
parent 85913132e3
commit 482433e5da

View File

@ -193,7 +193,7 @@ void LocalLibrary::ThreadProc() {
while (true) {
std::unique_lock<std::mutex> lock(this->mutex);
if (query = GetNextQuery()) {
if ((query = GetNextQuery())) {
this->RunQuery(query);
}