Skip to content

Commit

Permalink
Fixing a warning introduced by MDEV-13919 ("true" instread of "return…
Browse files Browse the repository at this point in the history
… true")
  • Loading branch information
Alexander Barkov committed Sep 28, 2017
1 parent c9a0142 commit 3a6d944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sp_rcontext.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ bool sp_rcontext::adjust_formal_params_to_actual_params(THD *thd,
while ((def= it++) && (arg= it_args++))
{
if (def->type_handler()->adjust_spparam_type(def, arg))
true;
return true;
}
return false;
}
Expand Down

0 comments on commit 3a6d944

Please sign in to comment.