diff options
author | Scott Anderson <scott@anderso.nz> | 2018-10-12 09:46:35 +1300 |
---|---|---|
committer | Scott Anderson <scott@anderso.nz> | 2018-10-12 09:46:35 +1300 |
commit | 93a496f3a8df5601fe1daab3ec0377fffd5155cc (patch) | |
tree | 98930311d0f28c2f754b6903fc42ecd1f3028d16 | |
parent | 7dedfce1aed99ef3292b8bfcbc2697adcf11e85c (diff) |
Include wlr/config.h in x11.h
This fixes a warning from the linker when using LTO, due to mismatched
types.
-rw-r--r-- | include/backend/x11.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 38aaad50..37e3e4b6 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -3,6 +3,7 @@ #include <stdbool.h> #include <wayland-server.h> +#include <wlr/config.h> #include <wlr/backend/x11.h> #include <wlr/interfaces/wlr_input_device.h> #include <wlr/interfaces/wlr_output.h> |