diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-10 23:30:55 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-10 23:30:55 +0000 |
commit | 960bf856d530e9dcdb97ff4181ef7d7a2c213feb (patch) | |
tree | dbd5a71c9293883125b1d1d77c0670ee3376c947 /gcc/c-common.c | |
parent | eaca1d37a2fbecc7029447110811261e3ced8660 (diff) | |
download | gcc-960bf856d530e9dcdb97ff4181ef7d7a2c213feb.tar.gz |
Doc and warning fixes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39580 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 437f64a94c9..dfa58136f49 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. |