From: Otto Moerbeek Date: Mon, 6 Jul 2020 13:00:25 +0000 (+0200) Subject: Kill an signed vs unsigned warning on OpenBSD X-Git-Tag: rec-4.4.0-alpha2~16^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=edfc31cc1f58c637a6153a7aee3389b9da5018ac;p=thirdparty%2Fpdns.git Kill an signed vs unsigned warning on OpenBSD --- diff --git a/pdns/recursordist/test-syncres_cc2.cc b/pdns/recursordist/test-syncres_cc2.cc index 618fb271c3..54228dc1fe 100644 --- a/pdns/recursordist/test-syncres_cc2.cc +++ b/pdns/recursordist/test-syncres_cc2.cc @@ -1314,7 +1314,7 @@ BOOST_AUTO_TEST_CASE(test_completely_flawed_big_nsset) BOOST_CHECK_EQUAL(ret.size(), 0U); // one query to get NSs, then A and AAAA for each NS, 5th NS hits the limit // limit is reduced to 5, because zone publishes many (20) NS - BOOST_CHECK_EQUAL(queriesCount, 11); + BOOST_CHECK_EQUAL(queriesCount, 11U); } }