From 6b78f13b7e05333d25f7858fb5108dbf99e8d087 Mon Sep 17 00:00:00 2001 From: Lorenzo Arena Date: Thu, 5 Jun 2025 08:57:54 +0200 Subject: [PATCH] network: test-lldp-rx: set more variable as static const --- src/libsystemd-network/test-lldp-rx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.47.3