aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-06-11 17:50:55 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1996-06-11 17:50:55 -0400
commite5ee0060c6e97e535a58ab86189e36bfa9414b0c (patch)
treeb749920d7669400304ceb894c4512aa0ded4d5d2 /gcc/c-common.c
parentf6f58ba3009aa7cacb27bcfe47e457116ed4adb9 (diff)
downloadgcc-e5ee0060c6e97e535a58ab86189e36bfa9414b0c.zip
gcc-e5ee0060c6e97e535a58ab86189e36bfa9414b0c.tar.gz
gcc-e5ee0060c6e97e535a58ab86189e36bfa9414b0c.tar.bz2
(check_format_info): Change text of message about use of `0' with
precision. From-SVN: r12277
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 c74a1a8..3311b08 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -1366,7 +1366,7 @@ check_format_info (info, params)
|| format_char == 'x' || format_char == 'x'))
{
sprintf (message,
- "precision and `0' flag not both allowed with `%c' format",
+ "`0' flag ignored with precision specifier and `%c' format",
format_char);
warning (message);
}