From 29801a2fde4a78c9bc489d5367e109957411e5eb Mon Sep 17 00:00:00 2001 From: mrdudz Date: Sat, 6 Jan 2024 17:53:24 +0100 Subject: [PATCH] remove extra format specifier, fixed #2330 --- test/val/bug1178-struct-copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/val/bug1178-struct-copy.c b/test/val/bug1178-struct-copy.c index 7fb7e7803..322002c02 100644 --- a/test/val/bug1178-struct-copy.c +++ b/test/val/bug1178-struct-copy.c @@ -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) ||