From a7a230ebef54be442960dff6f8908079552e6d78 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 24 Dec 2020 12:34:13 +0100 Subject: [PATCH] backend/drm: make drmModePlane arg in add_plane const Make it clearer it'll be free'd after add_plane returns. --- backend/drm/drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 7303bbd6..26cf99df 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -89,7 +89,7 @@ bool check_drm_features(struct wlr_drm_backend *drm) { } static bool add_plane(struct wlr_drm_backend *drm, - struct wlr_drm_crtc *crtc, drmModePlane *drm_plane, + struct wlr_drm_crtc *crtc, const drmModePlane *drm_plane, uint32_t type, union wlr_drm_plane_props *props) { assert(!(type == DRM_PLANE_TYPE_PRIMARY && crtc->primary)); assert(!(type == DRM_PLANE_TYPE_CURSOR && crtc->cursor));