From a77798f681afd9fa64e6f026e6e9e9ab41aeea6b Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Mon, 6 May 2019 23:41:50 +0200 Subject: abis_rsl.c: missing newlines on log lines Change-Id: Ic8885ca75ff23e4813a133f8fe34b7e67a1bc3e3 --- src/osmo-bsc/abis_rsl.c | 8 ++++---- 1 file 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); -- cgit v1.2.3