From b9bce9b404f219140d1dafd93b7d458c612bb8ce Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov <gorcunov@gmail.com> Date: Mon, 18 May 2020 12:35:52 +0300 Subject: [PATCH] box/sql: func -- fix compilation warning The @r is "double" value thus use explicit conversion to placate clang compiler. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> --- src/box/sql/func.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/box/sql/func.c b/src/box/sql/func.c index 487cdafe1d..0aedb2d3d3 100644 --- a/src/box/sql/func.c +++ b/src/box/sql/func.c @@ -857,9 +857,9 @@ roundFunc(sql_context * context, int argc, sql_value ** argv) * handle the rounding directly, * otherwise use printf. */ - if (n == 0 && r >= 0 && r < LARGEST_INT64 - 1) { + if (n == 0 && r >= 0 && r < (double)(LARGEST_INT64 - 1)) { r = (double)((sql_int64) (r + 0.5)); - } else if (n == 0 && r < 0 && (-r) < LARGEST_INT64 - 1) { + } else if (n == 0 && r < 0 && (-r) < (double)(LARGEST_INT64 - 1)) { r = -(double)((sql_int64) ((-r) + 0.5)); } else { const char *rounded_value = tt_sprintf("%.*f", n, r); -- GitLab