From c57adc330016d5dd326ee2810ca65877be188713 Mon Sep 17 00:00:00 2001 From: Erik Skultety Date: Tue, 4 Dec 2018 09:58:10 +0100 Subject: [PATCH] util: Fix the build on MinGW because of missing DT_CHR dirent type Caused by commit 39480969 Signed-off-by: Erik Skultety --- src/util/virutil.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/util/virutil.c b/src/util/virutil.c index da12a11e04..279e6aedc0 100644 --- a/src/util/virutil.c +++ b/src/util/virutil.c @@ -2172,9 +2172,6 @@ virHostGetDRMRenderNode(void) return NULL; while ((dirErr = virDirRead(driDir, &ent, driPath)) > 0) { - if (ent->d_type != DT_CHR) - continue; - if (STRPREFIX(ent->d_name, "renderD")) { have_rendernode = true; break; -- 2.47.2