From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Serge Petrenko Subject: [PATCH 2/3] decimal: add const qualifiers for decimal_pack() and decimal_len() Date: Fri, 21 Jun 2019 12:02:06 +0300 Message-Id: <03501e5f3d0541bf24c9afa1129438a4e2a7e8ef.1561107237.git.sergepetrenko@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: vdavydov.dev@gmail.com Cc: tarantool-patches@freelists.org, Serge Petrenko List-ID: The const qualifiers weren't there initially for some reason. Fix this. Part of #692 --- src/lib/core/decimal.c | 4 ++-- src/lib/core/decimal.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/core/decimal.c b/src/lib/core/decimal.c index 8f7ca3fbe..1f9b5838d 100644 --- a/src/lib/core/decimal.c +++ b/src/lib/core/decimal.c @@ -310,14 +310,14 @@ decimal_sqrt(decimal_t *res, const decimal_t *lhs) } uint32_t -decimal_len(decimal_t *dec) +decimal_len(const decimal_t *dec) { /* 1 + ceil((digits + 1) / 2) */ return 2 + dec->digits / 2; } char * -decimal_pack(char *data, decimal_t *dec) +decimal_pack(char *data, const decimal_t *dec) { uint32_t len = decimal_len(dec); *data++ = decimal_scale(dec); diff --git a/src/lib/core/decimal.h b/src/lib/core/decimal.h index 0c7b16098..1d0f2582e 100644 --- a/src/lib/core/decimal.h +++ b/src/lib/core/decimal.h @@ -173,7 +173,7 @@ decimal_sqrt(decimal_t *res, const decimal_t *lhs); /** @return The length in bytes decimal packed representation will take. */ uint32_t -decimal_len(decimal_t *dec); +decimal_len(const decimal_t *dec); /** * Convert a decimal \a dec to its packed representation. @@ -181,7 +181,7 @@ decimal_len(decimal_t *dec); * @return data + decimal_len(dec); */ char * -decimal_pack(char *data, decimal_t *dec); +decimal_pack(char *data, const decimal_t *dec); /** * Using a packed representation of size \a len pointed to by -- 2.20.1 (Apple Git-117)