dexter has uploaded this change for review. ( 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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/42/31142/1
diff --git a/src/osmo-bsc/pcu_sock.c b/src/osmo-bsc/pcu_sock.c index c70a8ae..75b4f5d 100644 --- a/src/osmo-bsc/pcu_sock.c +++ b/src/osmo-bsc/pcu_sock.c @@ -468,8 +468,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; }