From: Martin Liska Date: Tue, 19 May 2020 08:39:30 +0000 (+0200) Subject: Fix typo in c-parser.c. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53b663f90a88a9e8daeb98bac0b9d20294652d5d;p=gcc.git Fix typo in c-parser.c. gcc/c/ChangeLog: * c-parser.c: Fix typo. --- diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c index 5c8502bcceb..5d11e7e73c1 100644 --- a/gcc/c/c-parser.c +++ b/gcc/c/c-parser.c @@ -73,7 +73,7 @@ along with GCC; see the file COPYING3. If not see /* We need to walk over decls with incomplete struct/union/enum types after parsing the whole translation unit. In finish_decl(), if the decl is static, has incomplete - struct/union/enum type, it is appeneded to incomplete_record_decls. + struct/union/enum type, it is appended to incomplete_record_decls. In c_parser_translation_unit(), we iterate over incomplete_record_decls and report error if any of the decls are still incomplete. */