aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libmgcp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-07-08 09:08:34 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-07-08 09:08:34 +0200
commit891b0a857dc8f60fdb6b73c933e1d6520965e0f0 (patch)
tree40bfa946e8c7891a23051121d267821aa4487bdc /openbsc/src/libmgcp
parent627e7d9bfedde852710b824a2240bde2d2a75a69 (diff)
osmux: Remove extra newline from the osmux log message
<000b> osmux.c:177 Cannot find endpoint with cid=7 ! <000b> osmux.c:253 Cannot find an endpoint for circuit_id=7 The extra newline and '!' do not provide any extra value and make reading the output more difficult. Just remove it.
Diffstat (limited to 'openbsc/src/libmgcp')
-rw-r--r--openbsc/src/libmgcp/osmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/libmgcp/osmux.c b/openbsc/src/libmgcp/osmux.c
index f0c0c68ee..db5cee842 100644
--- a/openbsc/src/libmgcp/osmux.c
+++ b/openbsc/src/libmgcp/osmux.c
@@ -174,7 +174,7 @@ endpoint_lookup(struct mgcp_config *cfg, int cid,
return tmp;
}
- LOGP(DMGCP, LOGL_ERROR, "Cannot find endpoint with cid=%d\n!\n", cid);
+ LOGP(DMGCP, LOGL_ERROR, "Cannot find endpoint with cid=%d\n", cid);
return NULL;
}