summaryrefslogtreecommitdiff
path: root/src/exchange-tools
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-05 17:36:58 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-05 17:36:58 +0100
commit65457396b358bf797420bfd9af552e3bde01640f (patch)
treec34b46929635b903a16d98ed43dfc051b3e413b3 /src/exchange-tools
parent43cfb0eacec9dfbc256b520972deaf4f8f68dc14 (diff)
downloadexchange-65457396b358bf797420bfd9af552e3bde01640f.tar.gz
exchange-65457396b358bf797420bfd9af552e3bde01640f.tar.bz2
exchange-65457396b358bf797420bfd9af552e3bde01640f.zip
fix use of uninit value
Diffstat (limited to 'src/exchange-tools')
-rw-r--r--src/exchange-tools/taler-exchange-keyup.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c
index 29ccd449e..f14e28b3c 100644
--- a/src/exchange-tools/taler-exchange-keyup.c
+++ b/src/exchange-tools/taler-exchange-keyup.c
@@ -922,9 +922,8 @@ create_wire_fee_for_method (void *cls,
if (GNUNET_OK != *ret)
return;
- last_date = GNUNET_TIME_absolute_max (last_date,
- GNUNET_TIME_absolute_add (lookahead_sign_stamp,
- max_duration_spend));
+ last_date = GNUNET_TIME_absolute_add (lookahead_sign_stamp,
+ max_duration_spend);
GNUNET_asprintf (&section,
"exchange-wire-%s",
wiremethod);