aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.cpp
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-01-26 11:39:16 +0100
committerHarald Welte <laforge@gnumonks.org>2017-02-01 14:19:04 +0000
commit53f0b4deb6026b0c83a10d6a915a3a0c2e7caaf5 (patch)
treecbe8f540083726b2ccf85d7c215e7cbde4049e95 /src/bts.cpp
parentd935d88a8c5dbc3bce5476545a785a7a35cfc2d3 (diff)
cosmetic: Fix log output
In BTS::rcv_rach() the log output is messed up because of a stray "\n". This commit removes that. Change-Id: I40d01c71982ad83589f070cf0047a4ae04695411
Diffstat (limited to 'src/bts.cpp')
-rw-r--r--src/bts.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index e1c6dccf..21e9d968 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -552,8 +552,8 @@ int BTS::rcv_rach(uint16_t ra, uint32_t Fn, int16_t qta, uint8_t is_11bit,
Fn = Fn + m_cur_fn - m_cur_fn % 42432;
LOGP(DRLCMAC, LOGL_DEBUG, "MS requests UL TBF on RACH, "
- "so we provide one \n"
- "ra=0x%02x Fn=%u qta=%d is_11bit=%d:\n", ra, Fn, qta, is_11bit);
+ "so we provide one: ra=0x%02x Fn=%u qta=%d is_11bit=%d:\n",
+ ra, Fn, qta, is_11bit);
sb = is_single_block(ra, burst_type, is_11bit, &ms_class, &priority);