summaryrefslogtreecommitdiff
path: root/tests/ecommunity_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ecommunity_test.c')
-rw-r--r--tests/ecommunity_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ecommunity_test.c b/tests/ecommunity_test.c
index 418f659f..87f20f28 100644
--- a/tests/ecommunity_test.c
+++ b/tests/ecommunity_test.c
@@ -25,7 +25,7 @@ struct test_spec
static struct test_segment {
const char *name;
const char *desc;
- const u_char data[1024];
+ const u_int8_t data[1024];
int len;
struct test_spec sp;
} test_segments [] =
@@ -97,7 +97,7 @@ validate (struct ecommunity *ecom, const struct test_spec *sp)
str1,
(etmp && str2) ? str2 : "NULL");
}
- ecommunity_free (etmp);
+ ecommunity_free (&etmp);
XFREE (MTYPE_ECOMMUNITY_STR, str1);
XFREE (MTYPE_ECOMMUNITY_STR, str2);
@@ -122,7 +122,7 @@ parse_test (struct test_segment *t)
printf ("failed\n");
printf ("\n");
- ecommunity_unintern (ecom);
+ ecommunity_unintern (&ecom);
}