mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 08:32:30 +00:00
render/vulkan: fix signedness of strcmp() return value
strcmp() returns a signed integer.
This commit is contained in:
parent
62e60ba889
commit
d795824346
@ -88,7 +88,7 @@ void vulkan_change_layout(VkCommandBuffer cb, VkImage img,
|
|||||||
|
|
||||||
bool vulkan_has_extension(size_t count, const char **exts, const char *find) {
|
bool vulkan_has_extension(size_t count, const char **exts, const char *find) {
|
||||||
for (unsigned i = 0; i < count; ++i) {
|
for (unsigned i = 0; i < count; ++i) {
|
||||||
if (strcmp(exts[i], find) == 0u) {
|
if (strcmp(exts[i], find) == 0) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user