aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/abis_rsl.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2019-05-06 23:41:50 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2019-05-06 23:41:50 +0200
commita77798f681afd9fa64e6f026e6e9e9ab41aeea6b (patch)
tree2bac91147ece04b8699a7c04b0ad350ba15cd317 /src/osmo-bsc/abis_rsl.c
parent67f9fd5526a208f05561d7d0196a853aa13fbdf0 (diff)
abis_rsl.c: missing newlines on log lines
Diffstat (limited to 'src/osmo-bsc/abis_rsl.c')
-rw-r--r--src/osmo-bsc/abis_rsl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bsc/abis_rsl.c b/src/osmo-bsc/abis_rsl.c
index 0117435b6..bc0745775 100644
--- a/src/osmo-bsc/abis_rsl.c
+++ b/src/osmo-bsc/abis_rsl.c
@@ -1899,7 +1899,7 @@ static int abis_rsl_rx_ipacc_crcx_ack(struct msgb *msg)
struct gsm_lchan *lchan = msg->lchan;
if (!lchan->fi_rtp) {
- LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: CRCX ACK message for unconfigured lchan");
+ LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: CRCX ACK message for unconfigured lchan\n");
return -EINVAL;
}
@@ -1930,7 +1930,7 @@ static int abis_rsl_rx_ipacc_crcx_nack(struct msgb *msg)
rate_ctr_inc(&sign_link->trx->bts->bts_ctrs->ctr[BTS_CTR_RSL_IPA_NACK]);
if (!lchan->fi_rtp) {
- LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: CRCX NACK message for unconfigured lchan");
+ LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: CRCX NACK message for unconfigured lchan\n");
return -EINVAL;
}
osmo_fsm_inst_dispatch(msg->lchan->fi_rtp, LCHAN_RTP_EV_IPACC_CRCX_NACK, 0);
@@ -1944,7 +1944,7 @@ static int abis_rsl_rx_ipacc_mdcx_ack(struct msgb *msg)
struct gsm_lchan *lchan = msg->lchan;
if (!lchan->fi_rtp) {
- LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: MDCX ACK message for unconfigured lchan");
+ LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: MDCX ACK message for unconfigured lchan\n");
return -EINVAL;
}
@@ -1968,7 +1968,7 @@ static int abis_rsl_rx_ipacc_mdcx_nack(struct msgb *msg)
rate_ctr_inc(&sign_link->trx->bts->bts_ctrs->ctr[BTS_CTR_RSL_IPA_NACK]);
if (!lchan->fi_rtp) {
- LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: MDCX NACK message for unconfigured lchan");
+ LOG_LCHAN(msg->lchan, LOGL_ERROR, "Rx RSL IPACC: MDCX NACK message for unconfigured lchan\n");
return -EINVAL;
}
osmo_fsm_inst_dispatch(msg->lchan->fi_rtp, LCHAN_RTP_EV_IPACC_MDCX_NACK, 0);