diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2018-06-18 19:23:11 +0200 |
---|---|---|
committer | Pau Espin Pedrol <pespin@sysmocom.de> | 2018-06-18 19:23:11 +0200 |
commit | 1eb270bda845586e6c8d54f01c49b493d248a9d6 (patch) | |
tree | fa8f95c7f22b01b701009662f066fd8c2dd291ab | |
parent | b1a35d63b9ad888429216276d060429d0991aaf7 (diff) |
gsm: lapdm.c: Add missing new line char in notice log string
Change-Id: I92c78ea01570dc1f4be11b113c07f0aa3b342c8f
-rw-r--r-- | src/gsm/lapdm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsm/lapdm.c b/src/gsm/lapdm.c index 3a6fc5b5..ba9b3dfb 100644 --- a/src/gsm/lapdm.c +++ b/src/gsm/lapdm.c @@ -709,7 +709,7 @@ static int l2_ph_data_ind(struct msgb *msg, struct lapdm_entity *le, memcpy(&mctx.dl->mctx, &mctx, sizeof(mctx.dl->mctx)); rc =lapdm_rx_not_permitted(le, &lctx); if (rc > 0) { - LOGP(DLLAPD, LOGL_NOTICE, "received message not permitted"); + LOGP(DLLAPD, LOGL_NOTICE, "received message not permitted\n"); msgb_free(msg); rsl_rll_error(rc, &mctx); return -EINVAL; |