Commit 3a6d9442 authored by Alexander Barkov's avatar Alexander Barkov

Fixing a warning introduced by MDEV-13919 ("true" instread of "return true")

parent c9a01420
...@@ -105,7 +105,7 @@ bool sp_rcontext::adjust_formal_params_to_actual_params(THD *thd, ...@@ -105,7 +105,7 @@ bool sp_rcontext::adjust_formal_params_to_actual_params(THD *thd,
while ((def= it++) && (arg= it_args++)) while ((def= it++) && (arg= it_args++))
{ {
if (def->type_handler()->adjust_spparam_type(def, arg)) if (def->type_handler()->adjust_spparam_type(def, arg))
true; return true;
} }
return false; return false;
} }
......
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