summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-10-02 00:31:05 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-10-02 00:36:20 +0700
commit6a50ae922b2664fb844aadea61b163911b5587fa (patch)
tree384eeffa9f8564a58a116e1ce27bb9b3edddc1d3 /src
parentf7ea747548405f5770fa8c9c22f89532d931aeaf (diff)
layer23/app_ccch_scan.c: print 'new-line' char locally
Diffstat (limited to 'src')
-rw-r--r--src/host/layer23/src/misc/app_ccch_scan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/host/layer23/src/misc/app_ccch_scan.c b/src/host/layer23/src/misc/app_ccch_scan.c
index d8cb9123..31b72f82 100644
--- a/src/host/layer23/src/misc/app_ccch_scan.c
+++ b/src/host/layer23/src/misc/app_ccch_scan.c
@@ -174,7 +174,7 @@ static int gsm48_rx_imm_ass(struct msgb *msg, struct osmocom_ms *ms)
arfcn = ia->chan_desc.h0.arfcn_low | (ia->chan_desc.h0.arfcn_high << 8);
LOGP(DRR, LOGL_NOTICE, "GSM48 IMM ASS (ra=0x%02x, chan_nr=0x%02x, "
- "ARFCN=%u, TS=%u, SS=%u, TSC=%u) ", ia->req_ref.ra,
+ "ARFCN=%u, TS=%u, SS=%u, TSC=%u)\n", ia->req_ref.ra,
ia->chan_desc.chan_nr, arfcn, ch_ts, ch_subch,
ia->chan_desc.h0.tsc);
@@ -186,12 +186,11 @@ static int gsm48_rx_imm_ass(struct msgb *msg, struct osmocom_ms *ms)
maio = ia->chan_desc.h1.maio_low | (ia->chan_desc.h1.maio_high << 2);
LOGP(DRR, LOGL_NOTICE, "GSM48 IMM ASS (ra=0x%02x, chan_nr=0x%02x, "
- "HSN=%u, MAIO=%u, TS=%u, SS=%u, TSC=%u) ", ia->req_ref.ra,
+ "HSN=%u, MAIO=%u, TS=%u, SS=%u, TSC=%u)\n", ia->req_ref.ra,
ia->chan_desc.chan_nr, hsn, maio, ch_ts, ch_subch,
ia->chan_desc.h1.tsc);
}
- LOGPC(DRR, LOGL_NOTICE, "\n");
return 0;
}