]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix signedness mismatch in test 17504/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 2 Jun 2026 14:49:12 +0000 (16:49 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 2 Jun 2026 14:49:12 +0000 (16:49 +0200)
Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
pdns/test-misc_hh.cc

index 3c413734e62f3b1643c4156b3781ce387b1ef185..27a77de4273fb54f00331d62fe8137caab6a7754 100644 (file)
@@ -383,7 +383,7 @@ BOOST_AUTO_TEST_CASE(test_parseRFC1035CharStringRelaxed)
   in = ";login";
   expected = "";
   amount = parseRFC1035CharStringRelaxed(in, out);
-  BOOST_CHECK_EQUAL(amount, 0);
+  BOOST_CHECK_EQUAL(amount, 0U);
   BOOST_CHECK_EQUAL(out, expected);
 }