From 42f00318aba3341cfb48acf57c0d5d6718554344 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Mon, 29 Mar 1993 04:49:21 +0000 Subject: [PATCH] (store_parm_decls): Use pedwarn for "promoted arg doesn't match prototype" warning. From-SVN: r3908 --- gcc/c-decl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 8be399963a9..15232db6232 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6008,7 +6008,7 @@ store_parm_decls () #endif if (pedantic) { - warning ("promoted argument `%s' doesn't match prototype", + pedwarn ("promoted argument `%s' doesn't match prototype", IDENTIFIER_POINTER (DECL_NAME (parm))); warning_with_file_and_line (current_function_prototype_file, -- 2.30.2