diff options
author | Marek Polacek <polacek@redhat.com> | 2017-03-04 11:04:50 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2017-03-04 11:04:50 +0000 |
commit | 1ff4bae6b55130e47855af1baf9a022b6e65e8e2 (patch) | |
tree | 05d13f09cc174e092749aa76222883049ba202f4 /gcc/c/c-decl.c | |
parent | 4cdeb2343a2203ee64c7d13ff5b36187f727b0b4 (diff) | |
download | gcc-1ff4bae6b55130e47855af1baf9a022b6e65e8e2.zip gcc-1ff4bae6b55130e47855af1baf9a022b6e65e8e2.tar.gz gcc-1ff4bae6b55130e47855af1baf9a022b6e65e8e2.tar.bz2 |
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
Diffstat (limited to 'gcc/c/c-decl.c')
-rw-r--r-- | gcc/c/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c index f46ca11..645304a 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 |