summaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-20 00:22:21 +0000
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>2006-06-20 00:22:21 +0000
commit4d9f60cccc286788fca235062ae8e3cf3e587a1e (patch)
treeb4bc960e423349ebbe3d7b073ebbb7692b521d8b /gcc/c-common.c
parent65cf0690b47ba250c2e2ebf3322f2227689b46a4 (diff)
downloadgcc-4d9f60cccc286788fca235062ae8e3cf3e587a1e.tar.gz
PR c/27149
* c-common.c (c_common_truthvalue_conversion): Fix grammar in warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114800 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 1cef321c8c3..dd03a252062 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -2507,7 +2507,7 @@ c_common_truthvalue_conversion (tree expr)
{
/* Common Ada/Pascal programmer's mistake. We always warn
about this since it is so bad. */
- warning (OPT_Walways_true, "the address of %qD, will always evaluate as %<true%>",
+ warning (OPT_Walways_true, "the address of %qD will always evaluate as %<true%>",
inner);
return truthvalue_true_node;
}