diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-20 01:40:29 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-20 01:40:29 +0100 |
commit | b290ca30c0b7b7e10578cb82d25e39e2c7d7ee62 (patch) | |
tree | d71fc315f50a416877a2658c9614dbe02d3667fd /src/util | |
parent | e090d69cb0b7d1a4ce58256d500f3b29f84341f6 (diff) |
fix
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/amount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/amount.c b/src/util/amount.c index c15eeaafd..e50d9ad18 100644 --- a/src/util/amount.c +++ b/src/util/amount.c @@ -686,7 +686,8 @@ TALER_amount_divide (struct TALER_Amount *result, modr = (modr * TALER_AMOUNT_FRAC_BASE) + result->fraction; result->fraction = (uint32_t) (modr / divisor); /* 'fraction' could now be larger than #TALER_AMOUNT_FRAC_BASE, so we must normalize */ - TALER_amount_normalize (result); + GNUNET_assert (GNUNET_SYSERR != + TALER_amount_normalize (result)); } |