-
Russell King authored
Tricks like struct foo foo = { .bar.baz = 5, }; don't work. We must initialise child-structure members within their own block - ie, struct foo foo = { .bar = { .baz = 5, }, };
8ef88d84
Tricks like struct foo foo = { .bar.baz = 5, }; don't work. We must initialise child-structure members within their own block - ie, struct foo foo = { .bar = { .baz = 5, }, };