From 84771ee0deadae6d83b939a2d3f8f83cc420a829 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 11 Oct 2005 03:48:28 +0000 Subject: 2005-10-11 Paul Jakma * test-privs.c: Privileges unit test. * Makefile.am: build testprivs * aspath_test.c: fix a few sign warnings --- tests/aspath_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/aspath_test.c') diff --git a/tests/aspath_test.c b/tests/aspath_test.c index f9e0a74f..f025cb77 100644 --- a/tests/aspath_test.c +++ b/tests/aspath_test.c @@ -18,8 +18,8 @@ struct test_spec { const char *shouldbe; /* the string the path should parse to */ const char *shouldbe_delete_confed; /* ditto, but once confeds are deleted */ - const int hops; /* aspath_count_hops result */ - const int confeds; /* aspath_count_confeds */ + const unsigned int hops; /* aspath_count_hops result */ + const unsigned int confeds; /* aspath_count_confeds */ const int private_as; /* whether the private_as check should pass or fail */ #define NOT_ALL_PRIVATE 0 #define ALL_PRIVATE 1 @@ -731,7 +731,7 @@ aggregate_test (struct tests *t) static void cmp_test () { - int i; + unsigned int i; #define CMP_TESTS_MAX \ (sizeof(left_compare) / sizeof (struct compare_tests)) -- cgit v1.2.1