diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-11-17 20:18:01 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-11-17 20:18:08 +0100 |
commit | b4c164ad8eb27a25c9b2eacf1c3bb94e5c188df2 (patch) | |
tree | cbe6a491352e6cd5381299ec4fac40d54fa57bbd /src | |
parent | b305ad0a07b497438299ccbeda2cba52c070d02d (diff) |
-fix loop
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/exchange_api_stefan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/exchange_api_stefan.c b/src/lib/exchange_api_stefan.c index c3576cd73..6f6c3f2c7 100644 --- a/src/lib/exchange_api_stefan.c +++ b/src/lib/exchange_api_stefan.c @@ -307,7 +307,7 @@ TALER_EXCHANGE_keys_stefan_round ( if (NULL == min) return; frac = min->fraction; - while (0 == frac % 10) + while (0 != frac % 10) { mod *= 10; frac /= 10; |