xf86-video-intel: src/intel_dri.c

Chris Wilson ickle at kemper.freedesktop.org
Fri Apr 26 05:22:30 PDT 2013


 src/intel_dri.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7dfb359677027310f4617b49f3da2321727a076f
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Fri Apr 26 13:20:36 2013 +0100

    uxa/dri: Fix compile error for unknown 'bool'
    
    It appears that it is only accidentally pulled in on some systems, but
    not all.
    
    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=63957
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/intel_dri.c b/src/intel_dri.c
index 0df9912..0370034 100644
--- a/src/intel_dri.c
+++ b/src/intel_dri.c
@@ -1523,7 +1523,7 @@ out_complete:
 static int dri2_server_generation;
 #endif
 
-static bool has_i830_dri(void)
+static int has_i830_dri(void)
 {
 	return access(DRI_DRIVER_PATH "/i830_dri.so", R_OK) == 0;
 }


More information about the xorg-commit mailing list