Remove printf format warning on Windows oneAPI. (#3838)

This commit is contained in:
H. Joe Lee 2023-11-10 11:14:07 -06:00 committed by GitHub
parent 66786fa036
commit afb1f3c19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2194,7 +2194,7 @@ test_swmr_write_big(bool newest_format)
ZeroMemory(&pi, sizeof(pi));
if (0 == CreateProcess(NULL, SWMR_READER, NULL, NULL, false, 0, NULL, NULL, &si, &pi)) {
printf("CreateProcess failed (%d).\n", GetLastError());
printf("CreateProcess failed (%lu).\n", GetLastError());
FAIL_STACK_ERROR;
}