* decl.c (cp_finish_decl): Fix typo in cp_warning_at call.

From-SVN: r27798
This commit is contained in:
Richard Henderson 1999-06-27 20:13:36 -07:00 committed by Jeff Law
parent c8e7fe5816
commit dee6497db0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-06-28 Richard Henderson <rth@cygnus.com>
* decl.c (cp_finish_decl): Fix typo in cp_warning_at call.
1999-06-28 Jason Merrill <jason@yorick.cygnus.com>
* error.c (dump_type_real): Handle TREE_LIST again.

View File

@ -8133,7 +8133,7 @@ cp_finish_decl (decl, init, asmspec_tree, need_pop, flags)
else if (! DECL_ARTIFICIAL (decl))
{
cp_warning_at ("sorry: semantics of inline function static data `%#D' are wrong (you'll wind up with multiple copies)", decl);
cp_warning_at (" you can work around this by removing the initializer"), decl;
cp_warning_at (" you can work around this by removing the initializer", decl);
}
}
}