diff options
author | unknown <sanja@askmonty.org> | 2011-10-27 19:18:25 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2011-10-27 19:18:25 +0300 |
commit | 26387734fd16e45333b26dabb78740473052cb36 (patch) | |
tree | 9d5bc36a3224ea703a4abb6eff7c84e6583722bf /sql/sql_update.cc | |
parent | dd564da398d1a7f251ab75be2870c6a5f307b343 (diff) | |
download | mariadb-git-26387734fd16e45333b26dabb78740473052cb36.tar.gz |
Fix gcc 4.6 warning after merge with 5.1
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r-- | sql/sql_update.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc index 70572b406e5..c6f413e754e 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -2081,8 +2081,8 @@ int multi_update::do_updates() err: { thd->fatal_error(); - prepare_record_for_error_message(local_error, table); - table->file->print_error(local_error,MYF(0)); + prepare_record_for_error_message(local_error, err_table); + err_table->file->print_error(local_error,MYF(0)); } err2: |