/home/sbrivio/passt/udp.c:171:1: error: inital values in enum 'udp_iov_idx' are not consistent, consider explicit initialization of all, none or only the first enumerator [cert-int09-c,readability-enum-initial-value,-warnings-as-errors] 171 | enum udp_iov_idx { | ^ 172 | UDP_IOV_TAP = 0, 173 | UDP_IOV_ETH = 1, 174 | UDP_IOV_IP = 2, 175 | UDP_IOV_PAYLOAD = 3, 176 | UDP_NUM_IOVS | | = 4 Make sure we initialise all the values, in this case. Signed-off-by: Stefano Brivio <sbrivio(a)redhat.com> --- udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/udp.c b/udp.c index 100610f..89f2959 100644 --- a/udp.c +++ b/udp.c @@ -173,7 +173,7 @@ enum udp_iov_idx { UDP_IOV_ETH = 1, UDP_IOV_IP = 2, UDP_IOV_PAYLOAD = 3, - UDP_NUM_IOVS + UDP_NUM_IOVS = UDP_IOV_PAYLOAD + 1, }; /* IOVs and msghdr arrays for receiving datagrams from sockets */ -- 2.43.0