summaryrefslogtreecommitdiff
path: root/src/exchange-lib/testing_api_trait_fresh_coin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchange-lib/testing_api_trait_fresh_coin.c')
-rw-r--r--src/exchange-lib/testing_api_trait_fresh_coin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchange-lib/testing_api_trait_fresh_coin.c b/src/exchange-lib/testing_api_trait_fresh_coin.c
index 8779593ab..1f6cdac2c 100644
--- a/src/exchange-lib/testing_api_trait_fresh_coin.c
+++ b/src/exchange-lib/testing_api_trait_fresh_coin.c
@@ -38,21 +38,21 @@
* @param index which array to pick if @a cmd has multiple
* on offer.
* @param fresh_coins[out] will point to the offered array.
- *
* @return #GNUNET_OK on success.
*/
int
TALER_TESTING_get_trait_fresh_coins
(const struct TALER_TESTING_Command *cmd,
unsigned int index,
- struct FreshCoin **fresh_coins)
+ const struct FreshCoin **fresh_coins)
{
return cmd->traits (cmd->cls,
- (void **) fresh_coins,
+ (const void **) fresh_coins,
TALER_TESTING_TRAIT_FRESH_COINS,
index);
}
+
/**
* Offer a _array_ of fresh coins.
*