From 3847daa137b9ee0f416514dc72b7af3a2cfb0acb Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Mon, 14 May 2018 16:10:01 +0200 Subject: [PATCH] Fixed order of PCI and PRB in log print --- lib/src/phy/phch/pdsch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/phy/phch/pdsch.c b/lib/src/phy/phch/pdsch.c index 8e851ac6b..5dd614acb 100644 --- a/lib/src/phy/phch/pdsch.c +++ b/lib/src/phy/phch/pdsch.c @@ -350,8 +350,8 @@ int srslte_pdsch_set_cell(srslte_pdsch_t *q, srslte_cell_t cell) memcpy(&q->cell, &cell, sizeof(srslte_cell_t)); q->max_re = q->cell.nof_prb * MAX_PDSCH_RE(q->cell.cp); - INFO("PDSCH: Cell config PCI=%d, %d ports, %d PRBs, max_symbols: %d\n", q->cell.nof_ports, - q->cell.id, q->cell.nof_prb, q->max_re); + INFO("PDSCH: Cell config PCI=%d, %d ports, %d PRBs, max_symbols: %d\n", + q->cell.id, q->cell.nof_ports, q->cell.nof_prb, q->max_re); ret = SRSLTE_SUCCESS; }