This patch adds a missing comma in the documentation. Applying as obvious.
2015-01-05 Marek Polacek <pola...@redhat.com> * doc/extend.texi (Arrays of Length Zero): Add missing comma. diff --git gcc/doc/extend.texi gcc/doc/extend.texi index ffefb67..7cd6a56 100644 --- gcc/doc/extend.texi +++ gcc/doc/extend.texi @@ -1544,7 +1544,7 @@ struct bar @{ struct foo z; @}; struct foo a = @{ 1, @{ 2, 3, 4 @} @}; // @r{Valid.} struct bar b = @{ @{ 1, @{ 2, 3, 4 @} @} @}; // @r{Invalid.} struct bar c = @{ @{ 1, @{ @} @} @}; // @r{Valid.} -struct foo d[1] = @{ @{ 1 @{ 2, 3, 4 @} @} @}; // @r{Invalid.} +struct foo d[1] = @{ @{ 1, @{ 2, 3, 4 @} @} @}; // @r{Invalid.} @end smallexample @node Empty Structures Marek