From 66cf8073cb31cebf4532afec9b18556aff8088fb Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 9 Aug 2016 16:39:13 +0200 Subject: trafgen: proto: Make bytes pointer const in proto field set functions Make the __proto_field_set_bytes() take a const uint8_t *bytes pointer and also changed all callers accordingly. Signed-off-by: Tobias Klauser --- trafgen_l2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trafgen_l2.c') diff --git a/trafgen_l2.c b/trafgen_l2.c index 316d236..2e411e6 100644 --- a/trafgen_l2.c +++ b/trafgen_l2.c @@ -115,7 +115,7 @@ static void arp_header_init(struct proto_hdr *hdr) lower = proto_lower_default_add(hdr, PROTO_ETH); if (lower->id == PROTO_ETH) { - uint8_t bcast[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; + const uint8_t bcast[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; proto_field_set_default_bytes(lower, ETH_DST_ADDR, bcast); } -- cgit v1.2.3-54-g00ecf