aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-07-23 20:17:52 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-07-23 20:17:52 +0000
commit650a8c3f43c479003a56c5ad3161491b3b7a1813 (patch)
treeacdc4f26cfb0cf7219adb140aa4a8ddcfa15c94a
parentab22e912ff6c8ef9f823c8cd565458571c72f202 (diff)
* c-parser.c (struct c_generic_association): Fix typo.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@201178 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/c/ChangeLog4
-rw-r--r--gcc/c/c-parser.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index c7ecff8bdae..e2df48f93ea 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-23 Joseph Myers <joseph@codesourcery.com>
+
+ * c-parser.c (struct c_generic_association): Fix typo.
+
2013-07-23 Tom Tromey <tromey@redhat.com>
Joseph Myers <joseph@codesourcery.com>
diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c
index fea153a3808..b612e29c852 100644
--- a/gcc/c/c-parser.c
+++ b/gcc/c/c-parser.c
@@ -6238,7 +6238,7 @@ struct c_generic_association
{
/* The location of the starting token of the type. */
location_t type_location;
- /* The association's type, or NULL_TREE for 'default'.. */
+ /* The association's type, or NULL_TREE for 'default'. */
tree type;
/* The association's expression. */
struct c_expr expression;