summaryrefslogtreecommitdiff
path: root/src/util/amount.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-01-18 13:23:10 +0100
committerChristian Grothoff <christian@grothoff.org>2020-01-18 13:23:17 +0100
commit9317d6d69da2046d1a0cfbe1ea4b377924cc1c90 (patch)
tree5a64d0b187df3077077ca1a1c19b2a9db6483ea1 /src/util/amount.c
parentdac255329f4f385d3ccfb544e259d2fae76325df (diff)
downloadexchange-9317d6d69da2046d1a0cfbe1ea4b377924cc1c90.tar.gz
exchange-9317d6d69da2046d1a0cfbe1ea4b377924cc1c90.tar.bz2
exchange-9317d6d69da2046d1a0cfbe1ea4b377924cc1c90.zip
doxygen work
Diffstat (limited to 'src/util/amount.c')
-rw-r--r--src/util/amount.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/util/amount.c b/src/util/amount.c
index 1f00b1d6e..c432caeeb 100644
--- a/src/util/amount.c
+++ b/src/util/amount.c
@@ -539,20 +539,18 @@ TALER_amount_normalize (struct TALER_Amount *amount)
/**
- * Convert the fraction of @a amount to a string
- * in decimals.
+ * Convert the fraction of @a amount to a string in decimals.
*
* @param amount value to convert
- * @param tail[out] where to write the reesult
+ * @param[out] tail where to write the reesult
*/
static void
amount_to_tail (const struct TALER_Amount *amount,
char tail[TALER_AMOUNT_FRAC_LEN + 1])
{
uint32_t n = amount->fraction;
- unsigned int i;
- for (i = 0; (i < TALER_AMOUNT_FRAC_LEN) && (0 != n); i++)
+ for (unsigned int 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);