Skip to content

Commit

Permalink
Fix warning message refering to layers instead of ICDs
Browse files Browse the repository at this point in the history
The warning message about the binary having the wrong bitness for
ICD's was wrongly stating it was about layers having the wrong
bitness.
  • Loading branch information
charles-lunarg committed Sep 19, 2023
1 parent 9dc0e31 commit 40bee06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loader/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 40bee06

Please sign in to comment.