summaryrefslogtreecommitdiff
path: root/sql/sql_update.cc
diff options
context:
space:
mode:
authorStaale Smedseng <staale.smedseng@sun.com>2010-02-22 14:23:47 +0100
committerStaale Smedseng <staale.smedseng@sun.com>2010-02-22 14:23:47 +0100
commit5181551dee3306bcee410a31738e1a3ee9c2c501 (patch)
tree562de7e644892982f4ad885d065ea71e60181fc2 /sql/sql_update.cc
parent0a992ff5614de40dd0be976a36796d1e40db94e2 (diff)
downloadmariadb-git-5181551dee3306bcee410a31738e1a3ee9c2c501.tar.gz
Bug #43414 Parenthesis (and other) warnings compiling
MySQL with gcc 4.3.2 This is the final patch in the context of this bug.
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r--sql/sql_update.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc
index 84610630d62..63af275cef3 100644
--- a/sql/sql_update.cc
+++ b/sql/sql_update.cc
@@ -1283,7 +1283,8 @@ bool mysql_multi_update(THD *thd,
if (using_handler)
{
- Internal_error_handler *top_handler= thd->pop_internal_handler();
+ Internal_error_handler *top_handler;
+ top_handler= thd->pop_internal_handler();
DBUG_ASSERT(&handler == top_handler);
}