From bae8724a1658f9e7a1dce6eced86935b3c63cd7d Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Tue, 7 Jul 2015 22:26:56 +0100 Subject: [PATCH] Fix build after previous commit... --- src/Query.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Query.cpp b/src/Query.cpp index c788211b..1711b185 100644 --- a/src/Query.cpp +++ b/src/Query.cpp @@ -25,7 +25,7 @@ CQuery::CQuery(const CString& sName, CIRCNetwork* pNetwork) { m_pNetwork = pNetwork; // Bandaid for users who upgrade from <=1.4 and have 0 in "default channel buffer size" setting. - SetBufferCount(std::max(100, m_pNetwork->GetUser()->GetBufferCount()), true); + SetBufferCount(std::max(100u, m_pNetwork->GetUser()->GetBufferCount()), true); } CQuery::~CQuery() {