From e8b257d1c8dce5c2c86d9dfc9d883ad3f197dba1 Mon Sep 17 00:00:00 2001
From: Alexander Stephan <alexander.stephan@sap.com>
Date: Thu, 11 Dec 2025 11:03:41 +0000
Subject: [PATCH 2/4] CLEANUP: mworker: remove duplicate list.h include

Drop the second #include <haproxy/list.h> from mworker.c.
No functional change; reduces redundancy and keeps includes tidy.
---
 src/mworker.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/mworker.c b/src/mworker.c
index 2ff415a8b..3d6ce3a26 100644
--- a/src/mworker.c
+++ b/src/mworker.c
@@ -26,10 +26,9 @@
 #include <haproxy/errors.h>
 #include <haproxy/fd.h>
 #include <haproxy/global.h>
-#include <haproxy/list.h>
 #include <haproxy/log.h>
-#include <haproxy/listener.h>
 #include <haproxy/list.h>
+#include <haproxy/listener.h>
 #include <haproxy/mworker.h>
 #include <haproxy/peers.h>
 #include <haproxy/proto_sockpair.h>
-- 
2.43.7

