diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-05-11 03:53:11 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-05-11 18:25:52 +0200 |
commit | 300bd80772b7fc916275a04dd9c65a44a3c73741 (patch) | |
tree | 65b94c063c5584629cdb29b5440e428d28802234 /include/wlr | |
parent | 90d08f8f1c40e2a302d62052435ff2abdb08a854 (diff) |
wlr_drm_format_set: Store formats on array
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/render/drm_format_set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/render/drm_format_set.h b/include/wlr/render/drm_format_set.h index 8ae930be..3d54c6f4 100644 --- a/include/wlr/render/drm_format_set.h +++ b/include/wlr/render/drm_format_set.h @@ -54,7 +54,7 @@ struct wlr_drm_format_set { // The capacity of the array; private to wlroots size_t capacity; // A pointer to an array of `struct wlr_drm_format *` of length `len`. - struct wlr_drm_format **formats; + struct wlr_drm_format *formats; }; /** |