remove dangling spaces

This commit is contained in:
mrdudz
2022-04-17 16:07:52 +02:00
parent b54fb2dfd1
commit 9d3cdc5a10
89 changed files with 459 additions and 459 deletions

View File

@@ -41,7 +41,7 @@ void dotest1(void)
StructArray1[0] = test1;
printf ("test1: %d, %d, %d, %d, %d\n",
printf ("test1: %d, %d, %d, %d, %d\n",
(int)StructArray1[0].a, (int)StructArray1[0].b, (int)StructArray1[0].c,
(int)StructArray1[0].d, (int)StructArray1[0].e);
if ((StructArray1[0].a != 42) ||
@@ -62,7 +62,7 @@ void dotest2(void)
StructArray2[0] = test2;
printf ("test2: %d, %d, %d, %d, %d\n",
printf ("test2: %d, %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) ||