From edfc31cc1f58c637a6153a7aee3389b9da5018ac Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 6 Jul 2020 15:00:25 +0200 Subject: [PATCH] Kill an signed vs unsigned warning on OpenBSD --- pdns/recursordist/test-syncres_cc2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.47.2