diff options
| author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-11 22:40:47 +0000 |
|---|---|---|
| committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-11 22:40:47 +0000 |
| commit | 828c4f9c6c1be99c6f8e6562767c9d7fefb3733d (patch) | |
| tree | 3895c660664b06e986e3cac74d7f51777b01da9a | |
| parent | 68d4e2bcb6b856a24b6f596642547d6471e7a8e1 (diff) | |
| download | ppe42-gcc-828c4f9c6c1be99c6f8e6562767c9d7fefb3733d.tar.gz ppe42-gcc-828c4f9c6c1be99c6f8e6562767c9d7fefb3733d.zip | |
* 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
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | 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 <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 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; } |

