-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
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);
}
}
}

View File

@ -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);
}