summaryrefslogtreecommitdiff
path: root/sql/opt_range.h
diff options
context:
space:
mode:
authorserg@serg.mylan <>2006-01-03 17:54:54 +0100
committerserg@serg.mylan <>2006-01-03 17:54:54 +0100
commit14f94dc0cad1419e74047956c059c1cf9c3e7a2c (patch)
tree2c671047ec7c4161ca04e53f5f54c6797f81afd4 /sql/opt_range.h
parent04cff0d055fd63d7f0a9395478171e735799f30b (diff)
downloadmariadb-git-14f94dc0cad1419e74047956c059c1cf9c3e7a2c.tar.gz
many warnings (practically safe but annoying) corrected
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r--sql/opt_range.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h
index f84058f3b64..cdb00ea7d0c 100644
--- a/sql/opt_range.h
+++ b/sql/opt_range.h
@@ -705,7 +705,7 @@ class SQL_SELECT :public Sql_alloc {
class FT_SELECT: public QUICK_RANGE_SELECT {
public:
FT_SELECT(THD *thd, TABLE *table, uint key) :
- QUICK_RANGE_SELECT (thd, table, key, 1) { init(); }
+ QUICK_RANGE_SELECT (thd, table, key, 1) { VOID(init()); }
~FT_SELECT() { file->ft_end(); }
int init() { return error=file->ft_init(); }
int reset() { return 0; }