remove extra format specifier, fixed #2330

This commit is contained in:
mrdudz 2024-01-06 17:53:24 +01:00
parent 82f01af6ec
commit 29801a2fde
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ void dotest2(void)
StructArray2[0] = test2;
printf ("test2: %d, %d, %d, %d, %d\n",
printf ("test2: %d, %d, %d, %d\n",
(int)StructArray2[0].a, (int)StructArray2[0].b,
(int)StructArray2[0].c, (int)StructArray2[0].d);
if ((StructArray2[0].a != 42) ||