From: Donatas Abraitis Date: Fri, 27 Jan 2023 11:49:16 +0000 (+0200) Subject: tests: Increase flags from uint32_t to uint64_t X-Git-Tag: base_9.0~390^2~1 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e0159b09c9099e981427de404f8d703eb4a8f0e9;p=matthieu%2Ffrr.git tests: Increase flags from uint32_t to uint64_t Missed this part when increasing in the past. Signed-off-by: Donatas Abraitis --- diff --git a/tests/bgpd/test_peer_attr.c b/tests/bgpd/test_peer_attr.c index cc4f71e688..0452500abf 100644 --- a/tests/bgpd/test_peer_attr.c +++ b/tests/bgpd/test_peer_attr.c @@ -176,9 +176,9 @@ struct test_peer_attr { enum test_peer_attr_type type; union { - uint32_t flag; + uint64_t flag; struct { - uint32_t flag; + uint64_t flag; size_t direct; } filter; } u;