projects
/
psqlodbc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
039edc9
)
Format if-statement with commented out "then"-block differently.
author
Heikki Linnakangas
<heikki.linnakangas@iki.fi>
Thu, 18 Apr 2013 20:02:20 +0000
(23:02 +0300)
committer
Heikki 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
patch
|
blob
|
blame
|
history
diff --git
a/statement.c
b/statement.c
index f77e0a73a25d2fc8876fd63deb8efc32b4fcad0f..0c40967463def621eec2d3bb6924658af8c8dfb8 100644
(file)
--- a/
statement.c
+++ b/
statement.c
@@
-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;