diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-03-30 16:18:53 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-04-12 13:15:49 +0200 |
commit | 1e5c590a24a34cd74c5fb86eec8809d326a1c572 (patch) | |
tree | f244484405dfc222f29a1c60bbc7846addb3059b | |
parent | 81506da8cfc1d0677dda7286bc705c1157bfcf4e (diff) |
tests/kms-steal-crtc: Use correct includes
It was relying on drm_fourcc.h providing <stdint.h>, which is silly.
Fix it.
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
-rw-r--r-- | tests/kms/kms-steal-crtc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/kms/kms-steal-crtc.c b/tests/kms/kms-steal-crtc.c index 497772e237f1..4b830d27a1bf 100644 --- a/tests/kms/kms-steal-crtc.c +++ b/tests/kms/kms-steal-crtc.c @@ -29,6 +29,7 @@ #include <fcntl.h> #include <signal.h> #include <stdio.h> +#include <stdint.h> #include <string.h> #include <unistd.h> #ifdef HAVE_SYS_SELECT_H |