From 6f55137a1c465fde5aabca4530031542f751b4ad Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Fri, 2 Feb 2024 12:49:22 +0100 Subject: [PATCH] virsocket: Drop unused #include and #define MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Inside of virsocket.c there is an include of poll.h and PKT_TIMEOUT_MS macro definition. Neither of these is really needed and in fact it's a leftover after I reworked one of previously merged commits during review. Signed-off-by: Michal Privoznik Reviewed-by: Ján Tomko --- src/util/virsocket.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/util/virsocket.c b/src/util/virsocket.c index 3b274a4eec..a4c646e759 100644 --- a/src/util/virsocket.c +++ b/src/util/virsocket.c @@ -26,9 +26,6 @@ #include "virlog.h" #include -#include - -#define PKT_TIMEOUT_MS 500 /* ms */ #define VIR_FROM_THIS VIR_FROM_NONE -- 2.47.2