-indentation

This commit is contained in:
Christian Grothoff 2016-06-11 20:42:21 +02:00
parent c668eace47
commit 2a58f470af
2 changed files with 13 additions and 13 deletions

View File

@ -1896,7 +1896,7 @@ handle_transaction_data (void *cls,
*/ */
int int
TMH_DB_execute_track_transfer (struct MHD_Connection *connection, TMH_DB_execute_track_transfer (struct MHD_Connection *connection,
const struct TALER_WireTransferIdentifierRawP *wtid) const struct TALER_WireTransferIdentifierRawP *wtid)
{ {
int ret; int ret;
struct WtidTransactionContext ctx; struct WtidTransactionContext ctx;
@ -1935,10 +1935,10 @@ TMH_DB_execute_track_transfer (struct MHD_Connection *connection,
goto cleanup; goto cleanup;
} }
ret = TMH_RESPONSE_reply_track_transfer_details (connection, ret = TMH_RESPONSE_reply_track_transfer_details (connection,
&ctx.total, &ctx.total,
&ctx.merchant_pub, &ctx.merchant_pub,
&ctx.h_wire, &ctx.h_wire,
ctx.wdd_head); ctx.wdd_head);
cleanup: cleanup:
while (NULL != (wdd = ctx.wdd_head)) while (NULL != (wdd = ctx.wdd_head))
{ {
@ -2032,13 +2032,13 @@ handle_wtid_data (void *cls,
else else
{ {
ctx->res = TMH_RESPONSE_reply_track_transaction (ctx->connection, ctx->res = TMH_RESPONSE_reply_track_transaction (ctx->connection,
&ctx->h_contract, &ctx->h_contract,
&ctx->h_wire, &ctx->h_wire,
&ctx->coin_pub, &ctx->coin_pub,
&coin_delta, &coin_delta,
ctx->transaction_id, ctx->transaction_id,
wtid, wtid,
execution_time); execution_time);
} }
} }
} }

View File

@ -58,7 +58,7 @@ TMH_TRACKING_handler_track_transfer (struct TMH_RequestHandler *rh,
if (GNUNET_NO == res) if (GNUNET_NO == res)
return MHD_YES; /* parse error */ return MHD_YES; /* parse error */
return TMH_DB_execute_track_transfer (connection, return TMH_DB_execute_track_transfer (connection,
&wtid); &wtid);
} }