From: Lorenzo Arena Date: Thu, 5 Jun 2025 06:57:54 +0000 (+0200) Subject: network: test-lldp-rx: set more variable as static const X-Git-Tag: v258-rc1~370^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F37725%2Fhead;p=thirdparty%2Fsystemd.git network: test-lldp-rx: set more variable as static const --- diff --git a/src/libsystemd-network/test-lldp-rx.c b/src/libsystemd-network/test-lldp-rx.c index aa4bfd9b03e..f9870679d4b 100644 --- a/src/libsystemd-network/test-lldp-rx.c +++ b/src/libsystemd-network/test-lldp-rx.c @@ -141,7 +141,7 @@ static void test_receive_basic_packet(sd_event *e) { static void test_receive_incomplete_packet(sd_event *e) { sd_lldp_rx *lldp_rx; sd_lldp_neighbor **neighbors; - uint8_t frame[] = { + static const uint8_t frame[] = { /* Ethernet header */ 0x01, 0x80, 0xc2, 0x00, 0x00, 0x03, /* Destination MAC */ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, /* Source MAC */ @@ -168,7 +168,7 @@ static void test_receive_incomplete_packet(sd_event *e) { static void test_receive_oui_packet(sd_event *e) { sd_lldp_rx *lldp_rx; sd_lldp_neighbor **neighbors; - uint8_t frame[] = { + static const uint8_t frame[] = { /* Ethernet header */ 0x01, 0x80, 0xc2, 0x00, 0x00, 0x03, /* Destination MAC */ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, /* Source MAC */