From: Neil Booth Date: Sat, 15 Sep 2001 11:09:38 +0000 (+0000) Subject: * scan-decls.c (scan_decls): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=65813f56c90b4a9c114558f74d1b01e7bb801231;p=gcc.git * scan-decls.c (scan_decls): Fix typo. From-SVN: r45628 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aa960763844..24aad727cb4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-09-15 Neil Booth + + * scan-decls.c (scan_decls): Fix typo. + 2001-09-15 Neil Booth * cpphash.h (struct cpp_reader): Remove lexer_pos, directive_pos. diff --git a/gcc/scan-decls.c b/gcc/scan-decls.c index 7fd36cabe9e..fbe4e9d9ae1 100644 --- a/gcc/scan-decls.c +++ b/gcc/scan-decls.c @@ -170,7 +170,7 @@ scan_decls (pfile, argc, argv) || token.type == CPP_ELLIPSIS) have_arg_list = 1; } - recognized_function (&prev_id, token->line, + recognized_function (&prev_id, token.line, (saw_inline ? 'I' : in_extern_C_brace || current_extern_C ? 'F' : 'f'), have_arg_list);