aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorZack Weinberg <zack@codesourcery.com>2004-01-11 22:40:47 +0000
committerZack Weinberg <zack@gcc.gnu.org>2004-01-11 22:40:47 +0000
commitd4968a11164de7144bdded316a2126197661adf1 (patch)
tree3895c660664b06e986e3cac74d7f51777b01da9a /gcc
parent70adfc365c0df45c50421f9b631fb0622a10f0db (diff)
downloadgcc-d4968a11164de7144bdded316a2126197661adf1.zip
gcc-d4968a11164de7144bdded316a2126197661adf1.tar.gz
gcc-d4968a11164de7144bdded316a2126197661adf1.tar.bz2
c-decl.c (diagnose_arglist_conflict): Add missing space to diagnostic messages.
* c-decl.c (diagnose_arglist_conflict): Add missing space to diagnostic messages. From-SVN: r75691
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/c-decl.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1904cf6..07b0bca 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-11 Zack Weinberg <zack@codesourcery.com>
+
+ * c-decl.c (diagnose_arglist_conflict): Add missing space to
+ diagnostic messages.
+
2004-01-11 Jakub Jelinek <jakub@redhat.com>
PR middle-end/13392
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 639ad22..10ae86c 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;
}