Skip to content

Commit

Permalink
Fixing compilation error. Post push fix for Bug#17909656
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaithra Gopalareddy committed May 7, 2014
1 parent 8ade414 commit e1da25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/opt_range.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e1da25f

Please sign in to comment.