0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-03-12 09:28:46 +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

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