cosmetic: mgcp_network.c: merge one LOGPC to its preceding LOGP

Change-Id: I4dde8a060ec77e1234a373d7501c7082ae4c5028
This commit is contained in:
Neels Hofmeyr 2018-07-23 18:28:36 +02:00
parent acc10353fe
commit 7066af825a
1 changed files with 3 additions and 6 deletions

View File

@ -680,12 +680,9 @@ int mgcp_send(struct mgcp_endpoint *endp, int is_rtp, struct sockaddr_in *addr,
}
LOGP(DRTP, LOGL_DEBUG,
"endpoint:0x%x loop:%d, mode:%d ",
ENDPOINT_NUMBER(endp), tcfg->audio_loop, conn_src->conn->mode);
if (conn_src->conn->mode == MGCP_CONN_LOOPBACK)
LOGPC(DRTP, LOGL_DEBUG, "(loopback)\n");
else
LOGPC(DRTP, LOGL_DEBUG, "\n");
"endpoint:0x%x loop:%d, mode:%d%s\n",
ENDPOINT_NUMBER(endp), tcfg->audio_loop, conn_src->conn->mode,
conn_src->conn->mode == MGCP_CONN_LOOPBACK ? " (loopback)" : "");
/* Note: In case of loopback configuration, both, the source and the
* destination will point to the same connection. */