Skip to content

Commit

Permalink
Remove printf format warning on Windows oneAPI. (#3838)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored Nov 10, 2023
1 parent 66786fa commit afb1f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/accum.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit afb1f3c

Please sign in to comment.