dexter submitted this change.
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(-)
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);
To view, visit change 31142. To unsubscribe, or for help writing mail filters, visit settings.