Discussion:
[libvirt] [PATCH] util: Fix the build on MinGW because of missing DT_CHR dirent type
Erik Skultety
2018-12-04 09:17:30 UTC
Permalink
Caused by commit 39480969

Signed-off-by: Erik Skultety <***@redhat.com>
---

Pushed under the build breaker rule.

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.19.2

Loading...