summaryrefslogtreecommitdiff
path: root/src/lib/testing_api_trait_amount.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/testing_api_trait_amount.c')
-rw-r--r--src/lib/testing_api_trait_amount.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/lib/testing_api_trait_amount.c b/src/lib/testing_api_trait_amount.c
index 395e6b6c9..b33259e5d 100644
--- a/src/lib/testing_api_trait_amount.c
+++ b/src/lib/testing_api_trait_amount.c
@@ -37,15 +37,13 @@
* @param cmd command to extract the amount from.
* @param index which amount to pick if @a cmd has multiple
* on offer
- * @param amount[out] set to the amount.
- *
+ * @param[out] amount set to the amount.
* @return #GNUNET_OK on success
*/
int
-TALER_TESTING_get_trait_amount_obj
- (const struct TALER_TESTING_Command *cmd,
- unsigned int index,
- const struct TALER_Amount **amount)
+TALER_TESTING_get_trait_amount_obj (const struct TALER_TESTING_Command *cmd,
+ unsigned int index,
+ const struct TALER_Amount **amount)
{
return cmd->traits (cmd->cls,
(const void **) amount,
@@ -60,13 +58,11 @@ TALER_TESTING_get_trait_amount_obj
* @param index which amount to offer, in case there are
* multiple available.
* @param amount the amount to offer.
- *
* @return the trait.
*/
struct TALER_TESTING_Trait
-TALER_TESTING_make_trait_amount_obj
- (unsigned int index,
- const struct TALER_Amount *amount)
+TALER_TESTING_make_trait_amount_obj (unsigned int index,
+ const struct TALER_Amount *amount)
{
struct TALER_TESTING_Trait ret = {
.index = index,