aboutsummaryrefslogtreecommitdiff
path: root/render/allocator/shm.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/allocator/shm.c')
-rw-r--r--render/allocator/shm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/allocator/shm.c b/render/allocator/shm.c
index b6d3138c..2622f99a 100644
--- a/render/allocator/shm.c
+++ b/render/allocator/shm.c
@@ -31,7 +31,7 @@ static void buffer_destroy(struct wlr_buffer *wlr_buffer) {
static bool buffer_get_shm(struct wlr_buffer *wlr_buffer,
struct wlr_shm_attributes *shm) {
struct wlr_shm_buffer *buffer = shm_buffer_from_buffer(wlr_buffer);
- memcpy(shm, &buffer->shm, sizeof(*shm));
+ *shm = buffer->shm;
return true;
}