commit 2a58f470afb74046c811a4ee521176af83a52588
parent c668eace478a09a5e28908563f642f7762807df5
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 11 Jun 2016 20:42:21 +0200
-indentation
Diffstat:
2 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd_db.c b/src/exchange/taler-exchange-httpd_db.c
@@ -1896,7 +1896,7 @@ handle_transaction_data (void *cls,
*/
int
TMH_DB_execute_track_transfer (struct MHD_Connection *connection,
- const struct TALER_WireTransferIdentifierRawP *wtid)
+ const struct TALER_WireTransferIdentifierRawP *wtid)
{
int ret;
struct WtidTransactionContext ctx;
@@ -1935,10 +1935,10 @@ TMH_DB_execute_track_transfer (struct MHD_Connection *connection,
goto cleanup;
}
ret = TMH_RESPONSE_reply_track_transfer_details (connection,
- &ctx.total,
- &ctx.merchant_pub,
- &ctx.h_wire,
- ctx.wdd_head);
+ &ctx.total,
+ &ctx.merchant_pub,
+ &ctx.h_wire,
+ ctx.wdd_head);
cleanup:
while (NULL != (wdd = ctx.wdd_head))
{
@@ -2032,13 +2032,13 @@ handle_wtid_data (void *cls,
else
{
ctx->res = TMH_RESPONSE_reply_track_transaction (ctx->connection,
- &ctx->h_contract,
- &ctx->h_wire,
- &ctx->coin_pub,
- &coin_delta,
- ctx->transaction_id,
- wtid,
- execution_time);
+ &ctx->h_contract,
+ &ctx->h_wire,
+ &ctx->coin_pub,
+ &coin_delta,
+ ctx->transaction_id,
+ wtid,
+ execution_time);
}
}
}
diff --git a/src/exchange/taler-exchange-httpd_tracking.c b/src/exchange/taler-exchange-httpd_tracking.c
@@ -58,7 +58,7 @@ TMH_TRACKING_handler_track_transfer (struct TMH_RequestHandler *rh,
if (GNUNET_NO == res)
return MHD_YES; /* parse error */
return TMH_DB_execute_track_transfer (connection,
- &wtid);
+ &wtid);
}