Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix VERSIONINFO for llvm-rc #206

Merged
merged 2 commits into from
Feb 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion loader/windows/OpenCL.rc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ BEGIN
BEGIN
VALUE "FileDescription" ,"OpenCL Client DLL"
VALUE "ProductName" ,OPENCL_ICD_LOADER_NAME_STRING
VALUE "LegalCopyright" ,"Copyright \251 The Khronos Group Inc 2016-2020"
VALUE "LegalCopyright" ,L"Copyright \251 The Khronos Group Inc 2016-2020"
VALUE "FileVersion" ,OPENCL_ICD_LOADER_VERSION_STRING ".0"
VALUE "CompanyName" ,OPENCL_ICD_LOADER_VENDOR_STRING
VALUE "InternalName" ,"OpenCL"
Expand Down
2 changes: 1 addition & 1 deletion loader/windows/icd_windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ void *khrIcdOsLibraryLoad(const char *libraryName)
}
if (!hTemp)
{
KHR_ICD_TRACE("Failed to load driver. Windows error code is %d.\n", GetLastError());
KHR_ICD_TRACE("Failed to load driver. Windows error code is %"PRIuDW".\n", GetLastError());
}
return (void*)hTemp;
}
Expand Down