diff options
author | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | 2019-06-28 13:21:52 -0300 |
---|---|---|
committer | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | 2019-06-28 13:25:15 -0300 |
commit | 1206879a20b8ee70fe69f5b57c7708cadc20dd7a (patch) | |
tree | e661e397f4bf2db1a11f0e4a93f27e5f593b8cea /src | |
parent | dc5925b7d12244b71a5c3ad25f06d3317b61ec65 (diff) | |
download | mutter-1206879a20b8ee70fe69f5b57c7708cadc20dd7a.tar.gz |
kms-plane: Include <drm_fourcc.h>
Instead of including <drm/drm_fourcc.h>. This is the
only file that includes the drm_fourcc.h header like
this, and it happened to break the build locally.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/663
Diffstat (limited to 'src')
-rw-r--r-- | src/backends/native/meta-kms-plane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/native/meta-kms-plane.c b/src/backends/native/meta-kms-plane.c index 170497b89..291206393 100644 --- a/src/backends/native/meta-kms-plane.c +++ b/src/backends/native/meta-kms-plane.c @@ -22,7 +22,7 @@ #include "backends/native/meta-kms-plane.h" -#include <drm/drm_fourcc.h> +#include <drm_fourcc.h> #include <stdio.h> #include "backends/meta-monitor-transform.h" |