diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-09-28 17:00:42 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-09-28 17:00:42 +0400 |
commit | 3a6d94428f71171a88f1e7324952c1abbda00295 (patch) | |
tree | 775685a5ed9d4092bf845ed8808a6bfa8b02d6de /sql/sp_rcontext.cc | |
parent | c9a01420cfecb62bce216bd187894fd6aa670a14 (diff) | |
download | mariadb-git-3a6d94428f71171a88f1e7324952c1abbda00295.tar.gz |
Fixing a warning introduced by MDEV-13919 ("true" instread of "return true")
Diffstat (limited to 'sql/sp_rcontext.cc')
-rw-r--r-- | sql/sp_rcontext.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_rcontext.cc b/sql/sp_rcontext.cc index 3413a76e8c7..9fca1d37c1d 100644 --- a/sql/sp_rcontext.cc +++ b/sql/sp_rcontext.cc @@ -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; } |