1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixing compilation error. Post push fix for Bug#17909656

This commit is contained in:
Chaithra Gopalareddy
2014-05-07 16:55:03 +05:30
parent 5fa8e768ca
commit 32ae29df83

View File

@ -331,7 +331,7 @@ public:
const SEL_ARG *cmp_arg= arg->first();
const SEL_ARG *cur_arg= first();
for (; cur_arg && cmp_arg && cur_arg->is_same(cmp_arg);
cur_arg= cur_arg->next, cmp_arg= cmp_arg->next);
cur_arg= cur_arg->next, cmp_arg= cmp_arg->next) ;
if (cur_arg || cmp_arg)
return false;
return true;