libalias tests: Mark an unused variable with __unused.

It is not trivial to remove this set but unused variable since it
assigned to inside of a macro body, so just mark it with __unused
instead.
This commit is contained in:
John Baldwin 2023-06-20 09:29:00 -07:00
parent 6dd202ce93
commit c555dcddce

View File

@ -202,7 +202,7 @@ ATF_TC_BODY(6_cleartable, dummy)
{
struct libalias *la = LibAliasInit(NULL);
struct ip *po, *pi;
struct udphdr *ui, *uo;
struct udphdr *ui __unused, *uo;
uint16_t sport = 0x1234;
uint16_t dport = 0x5678;
uint16_t aport;