aboutsummaryrefslogtreecommitdiff
path: root/src/exchange-lib/test_exchange_api_keys_cherry_picking.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-08-19 12:22:42 +0200
committerChristian Grothoff <christian@grothoff.org>2018-08-19 12:22:42 +0200
commit6982ccd78b185751553a01d1f420d5603ad2faca (patch)
tree2f8107c68633f97722c9c4e7e4f3bdf818a131bc /src/exchange-lib/test_exchange_api_keys_cherry_picking.c
parent433fab96c9c788a37e61193ca3c5bcef698f5c6c (diff)
force TALER_EXCHANGE_connect() va-list to be actually provided
Diffstat (limited to 'src/exchange-lib/test_exchange_api_keys_cherry_picking.c')
-rw-r--r--src/exchange-lib/test_exchange_api_keys_cherry_picking.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/exchange-lib/test_exchange_api_keys_cherry_picking.c b/src/exchange-lib/test_exchange_api_keys_cherry_picking.c
index e5fd22a1..0dc0c540 100644
--- a/src/exchange-lib/test_exchange_api_keys_cherry_picking.c
+++ b/src/exchange-lib/test_exchange_api_keys_cherry_picking.c
@@ -597,13 +597,15 @@ run (void *cls)
rc = GNUNET_CURL_gnunet_rc_create (ctx);
exchange = TALER_EXCHANGE_connect (ctx,
"http://localhost:8081",
- &cert_cb, is,
+ &cert_cb,
+ is,
TALER_EXCHANGE_OPTION_END);
GNUNET_assert (NULL != exchange);
timeout_task
= GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
(GNUNET_TIME_UNIT_SECONDS, 300),
- &do_timeout, NULL);
+ &do_timeout,
+ NULL);
GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
is);
}