From 96ac20c3bbcf5536f46720212eb1f1b7775dacbf Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 18 Jan 2020 14:01:56 +0100 Subject: fix FTBFS --- src/util/amount.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/util/amount.c b/src/util/amount.c index c432caeeb..55ddc13a9 100644 --- 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); -- cgit v1.2.3