summaryrefslogtreecommitdiff
path: root/sql/item.cc
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2011-05-19 16:04:01 -0700
committerIgor Babaev <igor@askmonty.org>2011-05-19 16:04:01 -0700
commit98f2be086807f2ee601ee4f2fdd17a44798c3627 (patch)
tree654b3370520994cbff52f0e86c6983083b54a858 /sql/item.cc
parenta19ddf01176ec979b26ef367dd98f135e07049b7 (diff)
downloadmariadb-git-98f2be086807f2ee601ee4f2fdd17a44798c3627.tar.gz
Fixed compiler warnings.
Diffstat (limited to 'sql/item.cc')
-rw-r--r--sql/item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.cc b/sql/item.cc
index a62f26dc5cf..4ea8891b084 100644
--- a/sql/item.cc
+++ b/sql/item.cc
@@ -8866,7 +8866,7 @@ inline struct st_select_lex *Item_ident::get_depended_from() const
{
st_select_lex *dep;
if ((dep= depended_from))
- for ( ; dep->merged_into; dep= dep->merged_into);
+ for ( ; dep->merged_into; dep= dep->merged_into) ;
return dep;
}