diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-10-01 12:48:26 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-10-01 12:48:44 +0200 |
commit | a6deee497c1e4515c426d755f2b473905b958eca (patch) | |
tree | b7b7a0829d1cfb3762fc07dad4ab547cde679f52 /src/lib | |
parent | 1f34f365077647d60a30f94955cf1d6b1e411c13 (diff) |
fix clang build issue
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/exchange_api_stefan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/exchange_api_stefan.c b/src/lib/exchange_api_stefan.c index 437e78c8b..92d419c03 100644 --- a/src/lib/exchange_api_stefan.c +++ b/src/lib/exchange_api_stefan.c @@ -125,7 +125,7 @@ TALER_EXCHANGE_keys_stefan_b2n ( min = get_unit (keys); if (NULL == min) return GNUNET_SYSERR; - if (1.0d <= keys->stefan_lin) + if (1.0 <= keys->stefan_lin) { /* This cannot work, linear STEFAN fee estimate always exceed any gross amount. */ @@ -273,7 +273,7 @@ TALER_EXCHANGE_keys_stefan_n2b ( min = get_unit (keys); if (NULL == min) return GNUNET_SYSERR; - if (1.0d <= keys->stefan_lin) + if (1.0 <= keys->stefan_lin) { /* This cannot work, linear STEFAN fee estimate always exceed any gross amount. */ |