diff options
author | Simon Ser <contact@emersion.fr> | 2021-02-02 19:53:16 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-02-02 19:53:16 +0100 |
commit | 3d7aa7386706f6aa8041f27a3fba22d5b4290e82 (patch) | |
tree | f34caef1a36d3c4582acc351629bf6242ad2bf3f /render | |
parent | 7ac2ce25e3bcb7e03bee98dd9dd5757f6bf12d47 (diff) |
render/dmabuf: make src arg const in wlr_dmabuf_attributes_copy
Diffstat (limited to 'render')
-rw-r--r-- | render/dmabuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/dmabuf.c b/render/dmabuf.c index 1940b66e..3c431159 100644 --- a/render/dmabuf.c +++ b/render/dmabuf.c @@ -13,7 +13,7 @@ void wlr_dmabuf_attributes_finish(struct wlr_dmabuf_attributes *attribs) { } bool wlr_dmabuf_attributes_copy(struct wlr_dmabuf_attributes *dst, - struct wlr_dmabuf_attributes *src) { + const struct wlr_dmabuf_attributes *src) { memcpy(dst, src, sizeof(struct wlr_dmabuf_attributes)); int i; |