diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-11-10 17:14:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 17:14:07 (GMT) |
commit | afb1f3c19ace049faa1404b312b4ff44560a03f6 (patch) | |
tree | b630bbad003d4d621a77f78f9610ce61e3a7d0bb /test | |
parent | 66786fa036fa6da86c56725808c3d82d48a89b0e (diff) | |
download | hdf5-afb1f3c19ace049faa1404b312b4ff44560a03f6.zip hdf5-afb1f3c19ace049faa1404b312b4ff44560a03f6.tar.gz hdf5-afb1f3c19ace049faa1404b312b4ff44560a03f6.tar.bz2 |
Remove printf format warning on Windows oneAPI. (#3838)
Diffstat (limited to 'test')
-rw-r--r-- | test/accum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/accum.c b/test/accum.c index 5a19efe..9876998 100644 --- a/test/accum.c +++ b/test/accum.c @@ -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; } |