OSDN Git Service

* c-format.c (check_function_format): Change warning control
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 22 Jul 2005 17:10:34 +0000 (17:10 +0000)
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 22 Jul 2005 17:10:34 +0000 (17:10 +0000)
option from OPT_Wattribute to OPT_Wmissing_format_attribute.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102286 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/c-format.c

index e93626f..75ca975 100644 (file)
@@ -1,3 +1,8 @@
+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
index 587f15e..7d5af42 100644 (file)
@@ -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);
                }
            }