From a8ace99d7297eb34b76ead2887819cac4e75bfdd Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sat, 3 Sep 2022 01:10:24 +0700 Subject: [PATCH] trxcon: cosmetic: alignment fix in trxcon_inst_alloc() Change-Id: Icaab38b2b9e2885c4b3080140888d4b331578bb3 --- src/host/trxcon/src/trxcon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/host/trxcon/src/trxcon.c b/src/host/trxcon/src/trxcon.c index 9e68ec5ea..7e12e3bfc 100644 --- a/src/host/trxcon/src/trxcon.c +++ b/src/host/trxcon/src/trxcon.c @@ -283,9 +283,9 @@ struct trxcon_inst *trxcon_inst_alloc(void *ctx, unsigned int id) /* Init transceiver interface */ trxcon->phyif = trx_if_open(trxcon, - app_data.trx_bind_ip, - app_data.trx_remote_ip, - app_data.trx_base_port); + app_data.trx_bind_ip, + app_data.trx_remote_ip, + app_data.trx_base_port); if (trxcon->phyif == NULL) { trxcon_inst_free(trxcon); return NULL;