From: Charles Giessen Date: Tue, 19 Sep 2023 21:23:29 +0000 (-0600) Subject: Fix warning message refering to layers instead of ICDs X-Git-Tag: upstream/1.3.268~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f8c7962f4745d3a7126b5f31d58a42026369642;p=platform%2Fupstream%2FVulkan-Loader.git Fix warning message refering to layers instead of ICDs The warning message about the binary having the wrong bitness for ICD's was wrongly stating it was about layers having the wrong bitness. --- diff --git a/loader/loader.c b/loader/loader.c index dad503b..0d25d90 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -3654,7 +3654,7 @@ VkResult loader_icd_scan(const struct loader_instance *inst, struct loader_icd_t icd_details[i].full_library_path); break; case LOADER_LAYER_LIB_ERROR_WRONG_BIT_TYPE: { - loader_log(inst, VULKAN_LOADER_DRIVER_BIT, 0, "Requested layer %s was wrong bit-type. Ignoring this JSON", + loader_log(inst, VULKAN_LOADER_DRIVER_BIT, 0, "Requested ICD %s was wrong bit-type. Ignoring this JSON", icd_details[i].full_library_path); break; }