From 1eb270bda845586e6c8d54f01c49b493d248a9d6 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 18 Jun 2018 19:23:11 +0200 Subject: [PATCH] gsm: lapdm.c: Add missing new line char in notice log string Change-Id: I92c78ea01570dc1f4be11b113c07f0aa3b342c8f --- src/gsm/lapdm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gsm/lapdm.c b/src/gsm/lapdm.c index 3a6fc5b57..ba9b3dfbd 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;