diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c/c-parser.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index c7ecff8..e2df48f 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 fea153a..b612e29 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; |