summaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-06-11 21:50:55 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-06-11 21:50:55 +0000
commit848b4d8bc3b45e26ba9566d36fbcb664980a405b (patch)
treeb749920d7669400304ceb894c4512aa0ded4d5d2 /gcc/c-common.c
parente31d7821e1df2c2557d7d273909b0c34c77713d0 (diff)
downloadgcc-848b4d8bc3b45e26ba9566d36fbcb664980a405b.tar.gz
(check_format_info): Change text of message about use of `0' with
precision. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12277 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 c74a1a80d9a..3311b08e331 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);
}