From cf38d55e1b8cf97b6783fee3eaf474af099c1a6f Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 7 Apr 2024 12:49:22 +0200 Subject: [PATCH] interfaces: "fix" style issue in latest commit Depending on the version of clang, we may get different result. This is annoying, but no time to fix that now. --- src/daemon/interfaces-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/interfaces-linux.c b/src/daemon/interfaces-linux.c index 099412a1..2ee2823f 100644 --- a/src/daemon/interfaces-linux.c +++ b/src/daemon/interfaces-linux.c @@ -390,7 +390,7 @@ iflinux_get_permanent_mac(struct lldpd *cfg, struct interfaces_device_list *inte #ifdef ENABLE_DOT3 # define ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32 (SCHAR_MAX) # define ETHTOOL_DECLARE_LINK_MODE_MASK(name) \ - uint32_t name[ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32] + uint32_t name[ETHTOOL_LINK_MODE_MASK_MAX_KERNEL_NU32] struct ethtool_link_usettings { struct ethtool_link_settings base; -- 2.39.5