aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-01-25 02:00:18 -0700
committerJeff Law <law@gcc.gnu.org>1998-01-25 02:00:18 -0700
commitf69eecfbd55bb59f1f49afac9849f30116a5e2c3 (patch)
treea86f004cf48920ea34fdaaaa5de69335a0b03f8a /gcc
parent67c2a92854761b0dcf05a6c2d0fa636a55e6be60 (diff)
downloadgcc-f69eecfbd55bb59f1f49afac9849f30116a5e2c3.zip
gcc-f69eecfbd55bb59f1f49afac9849f30116a5e2c3.tar.gz
gcc-f69eecfbd55bb59f1f49afac9849f30116a5e2c3.tar.bz2
Fix mismatched parens.
From-SVN: r17471
Diffstat (limited to 'gcc')
-rw-r--r--gcc/extend.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/extend.texi b/gcc/extend.texi
index f50c207..16f535c 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