Commit 32ae29df authored by Chaithra Gopalareddy's avatar Chaithra Gopalareddy

Fixing compilation error. Post push fix for Bug#17909656

parent 5fa8e768
......@@ -331,7 +331,7 @@ class SEL_ARG :public Sql_alloc
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment