From d4968a11164de7144bdded316a2126197661adf1 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sun, 11 Jan 2004 22:40:47 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/c-decl.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1904cf6f230..07b0bca6d32 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-01-11 Zack Weinberg + + * c-decl.c (diagnose_arglist_conflict): Add missing space to + diagnostic messages. + 2004-01-11 Jakub Jelinek PR middle-end/13392 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; } -- 2.30.2