0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-23 09:21:53 +00:00

fix missing elem. sum in stats_channel

This commit is contained in:
Vojtech Vilimek 2022-07-20 15:01:41 +02:00
parent fe196ec397
commit 0dc82d4a1d

View File

@ -27,6 +27,7 @@ struct stats_channel {
pool *pool;
u8 max_generation;
u32 *counters;
u32 sum;
};
struct stats_channel_config {
@ -34,4 +35,6 @@ struct stats_channel_config {
u8 max_generation;
};
#endif