dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-pcu/+/32306 )
Change subject: pcu_l1_if: cosmetic: reformat comment ......................................................................
pcu_l1_if: cosmetic: reformat comment
Change-Id: Ib4ae65e1bc118572135fbec02e64dbec35f208b4 --- M src/pcu_l1_if.cpp 1 file changed, 10 insertions(+), 3 deletions(-)
Approvals: laforge: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp index 4aae9c4..bb0a309 100644 --- a/src/pcu_l1_if.cpp +++ b/src/pcu_l1_if.cpp @@ -274,9 +274,7 @@ 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);