[PATCH 09/15] net: use GCC and MSVC common VA ARGS extension
Tyler Retzlaff
roretzla at linux.microsoft.com
Mon Feb 12 22:49:11 CET 2024
Use ... and forward with __VA_ARGS__ instead of args... and args.
Neither mechanism is conformant with the standard but the former works
with both GCC and MSVC.
Signed-off-by: Tyler Retzlaff <roretzla at linux.microsoft.com>
---
lib/net/rte_net_crc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/net/rte_net_crc.c b/lib/net/rte_net_crc.c
index b401ea3..241155e 100644
--- a/lib/net/rte_net_crc.c
+++ b/lib/net/rte_net_crc.c
@@ -73,8 +73,8 @@
RTE_LOG_REGISTER_DEFAULT(libnet_logtype, INFO);
#define RTE_LOGTYPE_NET libnet_logtype
-#define NET_LOG(level, fmt, args...) \
- RTE_LOG_LINE(level, NET, "%s(): " fmt, __func__, ## args)
+#define NET_LOG(level, fmt, ...) \
+ RTE_LOG_LINE(level, NET, "%s(): " fmt, __func__, ## __VA_ARGS__)
/* Scalar handling */
--
1.8.3.1
More information about the dev
mailing list