From 33980a9f0ebd198fc8d2866ca8734ccfd2e3b60d Mon Sep 17 00:00:00 2001 From: Kristof Szabados <Kristof.Szabados@ericsson.com> Date: Fri, 22 May 2020 19:22:54 +0200 Subject: [PATCH] used as an int in every place it is used. Signed-off-by: Kristof Szabados <Kristof.Szabados@ericsson.com> --- core/Addfunc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Addfunc.cc b/core/Addfunc.cc index febf73a08..31b9fa9d4 100644 --- a/core/Addfunc.cc +++ b/core/Addfunc.cc @@ -2519,7 +2519,7 @@ UNIVERSAL_CHARSTRING replace(const UNIVERSAL_CHARSTRING& value, int idx, } else { // operand types mismatch => copy parts inefficiently, character by character - size_t i; + int i; for (i = 0; i < idx; ++i) { ret_val[i] = value[i]; } -- GitLab