summaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-11 22:40:47 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-11 22:40:47 +0000
commit828c4f9c6c1be99c6f8e6562767c9d7fefb3733d (patch)
tree3895c660664b06e986e3cac74d7f51777b01da9a /gcc/c-decl.c
parent68d4e2bcb6b856a24b6f596642547d6471e7a8e1 (diff)
downloadgcc-828c4f9c6c1be99c6f8e6562767c9d7fefb3733d.tar.gz
* c-decl.c (diagnose_arglist_conflict): Add missing space to
diagnostic messages. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75691 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r--gcc/c-decl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 639ad221f2f..10ae86ccecb 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -818,14 +818,14 @@ diagnose_arglist_conflict (tree newdecl, tree olddecl,
if (TREE_CHAIN (t) == 0
&& TYPE_MAIN_VARIANT (type) != void_type_node)
{
- inform ("a parameter list with an ellipsis can't match"
+ inform ("a parameter list with an ellipsis can't match "
"an empty parameter name list declaration");
break;
}
if (c_type_promotes_to (type) != type)
{
- inform ("an argument type that has a default promotion can't match"
+ inform ("an argument type that has a default promotion can't match "
"an empty parameter name list declaration");
break;
}