From afb1f3c19ace049faa1404b312b4ff44560a03f6 Mon Sep 17 00:00:00 2001 From: "H. Joe Lee" Date: Fri, 10 Nov 2023 11:14:07 -0600 Subject: Remove printf format warning on Windows oneAPI. (#3838) --- test/accum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12