Commit 1a8d0d41 by DJ Delorie Committed by DJ Delorie

c-format.c (check_function_format): Change warning control option from…

c-format.c (check_function_format): Change warning control option from OPT_Wattribute to OPT_Wmissing_format_attribute.

* c-format.c (check_function_format): Change warning control
option from OPT_Wattribute to OPT_Wmissing_format_attribute.

From-SVN: r102286
parent 94e2b58a
2005-07-22 DJ Delorie <dj@redhat.com>
* c-format.c (check_function_format): Change warning control
option from OPT_Wattribute to OPT_Wmissing_format_attribute.
2005-07-22 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-alias.c (count_ptr_derefs): Do not consider
......
......@@ -896,8 +896,8 @@ check_function_format (tree attrs, tree params)
break;
}
if (args != 0)
warning (OPT_Wattributes, "function might be possible "
"candidate for %qs format attribute",
warning (OPT_Wmissing_format_attribute, "function might "
"be possible candidate for %qs format attribute",
format_types[info.format_type].name);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment