mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
Fix bool return types
This makes wlroots build in C23 mode. C23 is more strict and rejects implicit conversions from bool to a pointer.
This commit is contained in:
parent
2f2a55ebd3
commit
a0b1329ee6
4 changed files with 7 additions and 7 deletions
|
|
@ -806,7 +806,7 @@ static struct wlr_texture *vulkan_texture_from_dmabuf_buffer(
|
|||
|
||||
struct wlr_vk_texture *texture = vulkan_texture_from_dmabuf(renderer, dmabuf);
|
||||
if (texture == NULL) {
|
||||
return false;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
texture->buffer = wlr_buffer_lock(buffer);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue