diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-01-27 13:49:16 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-02-15 23:12:32 +0200 |
| commit | e0159b09c9099e981427de404f8d703eb4a8f0e9 (patch) | |
| tree | b22aee393ff897b8c87e6fd902efb810d9b8f9c5 | |
| parent | 7bdeb1cd8470b0ff4b95c9f5788cdabad35ac722 (diff) | |
tests: Increase flags from uint32_t to uint64_t
Missed this part when increasing in the past.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
| -rw-r--r-- | tests/bgpd/test_peer_attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
