render/vulkan: fix signedness of strcmp() return value

strcmp() returns a signed integer.
This commit is contained in:
Simon Ser 2023-04-19 15:29:53 +02:00
parent 62e60ba889
commit d795824346
1 changed files with 1 additions and 1 deletions

View File

@ -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) {
for (unsigned i = 0; i < count; ++i) {
if (strcmp(exts[i], find) == 0u) {
if (strcmp(exts[i], find) == 0) {
return true;
}
}