From: Marek Polacek Date: Sat, 4 Mar 2017 11:04:50 +0000 (+0000) Subject: re PR c/79847 (diagnostics: missing space in "implicit declaration of function") X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ff4bae6b55130e47855af1baf9a022b6e65e8e2;p=gcc.git 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 --- diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 8ff0ccc1b69..e639e6bb785 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,8 @@ +2017-03-04 Marek Polacek + + PR c/79847 + * c-decl.c (implicit_decl_warning): Add missing space. + 2017-03-03 Marek Polacek PR c/79758 diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c index f46ca11b9ab..645304a7e47 100644 --- a/gcc/c/c-decl.c +++ b/gcc/c/c-decl.c @@ -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