From: Vojtech Vilimek Date: Wed, 20 Jul 2022 13:01:41 +0000 (+0200) Subject: fix missing elem. sum in stats_channel X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0dc82d4a1d286e4cc350ee93ba63894ead7c94c1;p=thirdparty%2Fbird.git fix missing elem. sum in stats_channel --- diff --git a/proto/stats/stats.h b/proto/stats/stats.h index 12a12c29f..51802341c 100644 --- a/proto/stats/stats.h +++ b/proto/stats/stats.h @@ -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