diff options
author | bi4k8 <bi4k8-js7gse3b01w@mt2015.com> | 2022-06-11 20:41:16 +0000 |
---|---|---|
committer | bi4k8 <bi4k8-js7gse3b01w@mt2015.com> | 2022-06-11 20:41:16 +0000 |
commit | f295aff7629eed3a059438a6f404950b939ea0c0 (patch) | |
tree | 083789368f941fe09fd3e4a5c21b46774a732006 /render/vulkan/pixel_format.c | |
parent | 35d1bcff6f6320442e6d3af52b3501b424eefc2b (diff) |
Add missing &
Diffstat (limited to 'render/vulkan/pixel_format.c')
-rw-r--r-- | render/vulkan/pixel_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/vulkan/pixel_format.c b/render/vulkan/pixel_format.c index 01ac6c7a..b4c40070 100644 --- a/render/vulkan/pixel_format.c +++ b/render/vulkan/pixel_format.c @@ -297,7 +297,7 @@ void vulkan_format_props_query(struct wlr_vk_device *dev, dev->format_props[dev->format_prop_count] = props; ++dev->format_prop_count; } else { - vulkan_format_props_finish(props); + vulkan_format_props_finish(&props); } } |