aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-04-14 14:36:59 +0200
committerdexter <pmaier@sysmocom.de>2023-04-26 12:24:51 +0000
commitc564ce8965f5ff9c447cab1a316c897205bd287c (patch)
tree2f9741998d3bee9b71a32fc5c019b99e867c6b81 /src
parent4d3639144d681997ef5bfcdda70237a1e583d93f (diff)
pcu_l1_if: cosmetic: reformat comment
Diffstat (limited to 'src')
-rw-r--r--src/pcu_l1_if.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp
index 4aae9c49..bb0a3097 100644
--- a/src/pcu_l1_if.cpp
+++ b/src/pcu_l1_if.cpp
@@ -274,9 +274,7 @@ void pcu_l1if_tx_pch(struct gprs_rlcmac_bts *bts, bitvec *block, int plen, const
else
memset(data, '0', IMSI_DIGITS_FOR_PAGING);
- /* block provided by upper layer comes without first byte (plen),
- * prepend it manually:
- */
+ /* block provided by upper layer comes without first byte (plen), prepend it manually: */
OSMO_ASSERT(sizeof(data) >= IMSI_DIGITS_FOR_PAGING + 1 + block->data_len);
data[3] = (plen << 2) | 0x01;
bitvec_pack(block, data + IMSI_DIGITS_FOR_PAGING + 1);