egl/android: do not indent HAVE_DRM_GRALLOC preprocessor directive
authorMauro Rossi <issor.oruam@gmail.com>
Wed, 15 Aug 2018 12:46:25 +0000 (14:46 +0200)
committerMauro Rossi <issor.oruam@gmail.com>
Sun, 2 Sep 2018 09:27:08 +0000 (11:27 +0200)
Fixes: 3f7bca44d9 ("egl/android: #ifdef out flink name support")
Fixes: c7bb82136b ("egl/android: Add DRM node probing and filtering")
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Signed-off-by: Mauro Rossi <issor.oruam@gmail.com>
src/egl/drivers/dri2/platform_android.c

index 1f9fe27ab85a7541e6c8ae263de3fbdfcd6112f6..ecc0245c9a28e903b835dcbec98262ce7bf7ceed 100644 (file)
@@ -1375,7 +1375,7 @@ droid_load_driver(_EGLDisplay *disp)
    dri2_dpy->is_render_node = drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER;
 
    if (!dri2_dpy->is_render_node) {
-   #ifdef HAVE_DRM_GRALLOC
+#ifdef HAVE_DRM_GRALLOC
        /* Handle control nodes using __DRI_DRI2_LOADER extension and GEM names
         * for backwards compatibility with drm_gralloc. (Do not use on new
         * systems.) */
@@ -1384,10 +1384,10 @@ droid_load_driver(_EGLDisplay *disp)
           err = "DRI2: failed to load driver";
           goto error;
        }
-   #else
+#else
        err = "DRI2: handle is not for a render node";
        goto error;
-   #endif
+#endif
    } else {
        dri2_dpy->loader_extensions = droid_image_loader_extensions;
        if (!dri2_load_driver_dri3(disp)) {