exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 96ac20c3bbcf5536f46720212eb1f1b7775dacbf
parent ef4cb1b7c96352a3cff782d20e53b1ee415fa976
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 18 Jan 2020 14:01:56 +0100

fix FTBFS

Diffstat:
Msrc/util/amount.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/util/amount.c b/src/util/amount.c @@ -549,8 +549,9 @@ amount_to_tail (const struct TALER_Amount *amount, char tail[TALER_AMOUNT_FRAC_LEN + 1]) { uint32_t n = amount->fraction; + unsigned int i; - for (unsigned int i = 0; (i < TALER_AMOUNT_FRAC_LEN) && (0 != n); i++) + for (i = 0; (i < TALER_AMOUNT_FRAC_LEN) && (0 != n); i++) { tail[i] = '0' + (n / (TALER_AMOUNT_FRAC_BASE / 10)); n = (n * 10) % (TALER_AMOUNT_FRAC_BASE);