aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2001-02-10 23:30:55 +0000
committerAnthony Green <green@gcc.gnu.org>2001-02-10 23:30:55 +0000
commit3220116ffb472e3330fcebaf30246c74a271dfe0 (patch)
treedbd5a71c9293883125b1d1d77c0670ee3376c947 /gcc/c-common.c
parent36b8ffbe4ff1ce789319e76b5f7c326ceb00b94f (diff)
downloadgcc-3220116ffb472e3330fcebaf30246c74a271dfe0.zip
gcc-3220116ffb472e3330fcebaf30246c74a271dfe0.tar.gz
gcc-3220116ffb472e3330fcebaf30246c74a271dfe0.tar.bz2
Doc and warning fixes.
From-SVN: r39580
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 437f64a..dfa5813 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -466,7 +466,7 @@ combine_strings (strings)
nchars = wide_flag ? length / wchar_bytes : length;
if (pedantic && nchars - 1 > nchars_max && c_language == clk_c)
- pedwarn ("string length `%d' is greater than the minimum length `%d' ISO C%d is required to support",
+ pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
/* Create the array type for the string constant.