2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-10 07:30:27 +08:00

re PR c/79847 (diagnostics: missing space in "implicit declaration of function")

PR c/79847
	* c-decl.c (implicit_decl_warning): Add missing space.

From-SVN: r245893
This commit is contained in:
Marek Polacek 2017-03-04 11:04:50 +00:00 committed by Marek Polacek
parent 4cdeb2343a
commit 1ff4bae6b5
2 changed files with 6 additions and 1 deletions

@ -1,3 +1,8 @@
2017-03-04 Marek Polacek <polacek@redhat.com>
PR c/79847
* c-decl.c (implicit_decl_warning): Add missing space.
2017-03-03 Marek Polacek <polacek@redhat.com>
PR c/79758

@ -3147,7 +3147,7 @@ implicit_decl_warning (location_t loc, tree id, tree olddecl)
richloc.add_fixit_replace (hint);
warned = warning_at_rich_loc
(&richloc, OPT_Wimplicit_function_declaration,
G_("implicit declaration of function %qE;did you mean %qs?"),
G_("implicit declaration of function %qE; did you mean %qs?"),
id, hint);
}
else