Format if-statement with commented out "then"-block differently.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 18 Apr 2013 20:02:20 +0000 (23:02 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 18 Apr 2013 20:02:20 +0000 (23:02 +0300)
To silence a Coverity warning that the semicolon might be misplaced.

statement.c

index f77e0a73a25d2fc8876fd63deb8efc32b4fcad0f..0c40967463def621eec2d3bb6924658af8c8dfb8 100644 (file)
@@ -796,7 +796,9 @@ SC_recycle_statement(StatementClass *self)
            if (CC_loves_visible_trans(conn) && CC_is_in_trans(conn))
            {
                if (SC_is_pre_executable(self) && !SC_is_parse_tricky(self))
-                   /* CC_abort(conn) */;
+               {
+                   /* CC_abort(conn); */
+               }
            }
            break;