diff options
author | unknown <gkodinov/kgeorge@macbook.local> | 2007-09-21 10:15:16 +0200 |
---|---|---|
committer | unknown <gkodinov/kgeorge@macbook.local> | 2007-09-21 10:15:16 +0200 |
commit | 92771001b3ac1b29bd3587e05bae93b3a35cb030 (patch) | |
tree | c0646efb7b78935b17aa1ecf56230f83916fb8cd /sql/sql_update.cc | |
parent | c9f5a087f5d0a789286aed8dded9d5813cbf1bb7 (diff) | |
download | mariadb-git-92771001b3ac1b29bd3587e05bae93b3a35cb030.tar.gz |
fixed type conversion warnings revealed by bug 30639
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r-- | sql/sql_update.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc index d4df805d006..4071bb86c90 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -461,7 +461,7 @@ int mysql_update(THD *thd, init_read_record_idx(&info, thd, table, 1, used_index); thd->proc_info="Searching rows for update"; - uint tmp_limit= limit; + ha_rows tmp_limit= limit; while (!(error=info.read_record(&info)) && !thd->killed) { |