From: Jeff Law Date: Sun, 25 Jan 1998 09:00:18 +0000 (-0700) Subject: Fix mismatched parens. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f69eecfbd55bb59f1f49afac9849f30116a5e2c3;p=gcc.git Fix mismatched parens. From-SVN: r17471 --- diff --git a/gcc/extend.texi b/gcc/extend.texi index f50c2073562..16f535c7a89 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -2019,8 +2019,8 @@ This attribute specifies a minimum alignment (in bytes) for variables of the specified type. For example, the declarations: @smallexample -struct S @{ short f[3]; @} __attribute__ ((aligned (8)); -typedef int more_aligned_int __attribute__ ((aligned (8)); +struct S @{ short f[3]; @} __attribute__ ((aligned (8))); +typedef int more_aligned_int __attribute__ ((aligned (8))); @end smallexample @noindent