diagnostic.c (diagnostic_report_diagnostic): Remove extraneous braces.
authorNathan Sidwell <nathan@acm.org>
Fri, 2 Dec 2016 13:14:01 +0000 (13:14 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Fri, 2 Dec 2016 13:14:01 +0000 (13:14 +0000)
* diagnostic.c (diagnostic_report_diagnostic): Remove extraneous
braces.

From-SVN: r243177

gcc/ChangeLog
gcc/diagnostic.c

index afac973..7da0aca 100644 (file)
@@ -1,3 +1,8 @@
+2016-12-02  Nathan Sidwell  <nathan@acm.org>
+
+       * diagnostic.c (diagnostic_report_diagnostic): Remove extraneous
+       braces.
+
 2016-12-02  Aldy Hernandez  <aldyh@redhat.com>
 
        PR middle-end/78328
index 2304e14..4278a10 100644 (file)
@@ -834,9 +834,7 @@ diagnostic_report_diagnostic (diagnostic_context *context,
      -Wno-error=*.  */
   if (context->warning_as_error_requested
       && diagnostic->kind == DK_WARNING)
-    {
-      diagnostic->kind = DK_ERROR;
-    }
+    diagnostic->kind = DK_ERROR;
 
   if (diagnostic->option_index
       && diagnostic->option_index != permissive_error_option (context))