ci: fix the recorded output for compare_structs.c.must_have after eea46c4

pull/13969/head
Delyan Angelov 2022-04-07 18:08:56 +03:00
parent b232a3b0d1
commit 5a695c81dc
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
struct Something aaa = (struct Something){.fint = 0,.ff32 = 0,.fchar = 0,};
struct Something bbb = (struct Something){.fint = 0,.ff32 = 0,.fchar = 0,};
struct Something aaa = ((struct Something){.fint = 0,.ff32 = 0,.fchar = 0,});
struct Something bbb = ((struct Something){.fint = 0,.ff32 = 0,.fchar = 0,});
if (Something_struct_eq(aaa, bbb)) {