dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/31142 )
Change subject: pcu_sock: rework log output ......................................................................
pcu_sock: rework log output
The code is easier to read when the log string is in one line
Change-Id: Idc673e0b15869c6966701524db1af7d7847c16ab Related: OS#5198 --- M src/osmo-bsc/pcu_sock.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/src/osmo-bsc/pcu_sock.c b/src/osmo-bsc/pcu_sock.c index d9a3b46..df84615 100644 --- a/src/osmo-bsc/pcu_sock.c +++ b/src/osmo-bsc/pcu_sock.c @@ -447,8 +447,8 @@ /* DT = direct tlli. A tlli is prefixed */
if (data_req->len < 5) { - LOGP(DPCU, LOGL_ERROR, "Received PCU data request with " - "invalid/small length %d\n", data_req->len); + LOGP(DPCU, LOGL_ERROR, "Received PCU data request with invalid/small length %d\n", + data_req->len); break; } memcpy(&tlli, data_req->data, 4);
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.