Skip to content

Commit

Permalink
Remove printf format warning on Windows oneAPI. (HDFGroup#3838)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored and jhendersonHDF committed Dec 7, 2023
1 parent 52f5b39 commit d20f985
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 d20f985

Please sign in to comment.