(again) remove TABs

This commit is contained in:
Christian Groessler
2021-05-13 18:12:12 +02:00
parent e5813cfb1a
commit 09e0e74124
3 changed files with 23 additions and 24 deletions

View File

@@ -15,7 +15,7 @@ int main(void)
S b = {1, 4};
S m[1] = {{6, 3}};
S *p = &a;
(&a)->a += b.a;
p->b += b.b;
m->a += b.a;