From 43d0ebfdac78d645a0dd14469553192c3f9cef87 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Sat, 13 Oct 2018 21:36:58 -0700 Subject: [PATCH] Fix include path for (libdrm/)drm_fourcc.h This PR broke a private nixpkgs definition I have for wlroots: https://github.com/swaywm/wlroots/pull/1304 It is fixed by changing `#include ` to `#include `, which follows what is already done in the dmabuf example. --- render/egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/egl.c b/render/egl.c index 585baaeb..1f8ff25d 100644 --- a/render/egl.c +++ b/render/egl.c @@ -3,7 +3,7 @@ #include #include #include -#include +#include #include #include #include "glapi.h"