egl: drop confusing mincore() error message
[mesa.git] / src / egl / main / eglglobals.c
index 5760edc3d3c11719d9a14309321044884b775c74..8a8c03c924fd0f036f52901ce2ceee5fbdc8257c 100644 (file)
@@ -38,7 +38,6 @@
 #include "egldevice.h"
 #include "egldisplay.h"
 #include "egldriver.h"
-#include "egllog.h"
 
 #include "util/macros.h"
 
@@ -173,7 +172,6 @@ _eglPointerIsDereferencable(void *p)
    addr &= ~(page_size - 1);
 
    if (mincore((void *) addr, page_size, &valid) < 0) {
-      _eglLog(_EGL_DEBUG, "mincore failed: %m");
       return EGL_FALSE;
    }